Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stop a running command in PyDev Console

I use the PyDev console to run long scripts, and often I wish to stop in the middle of a command. In a regular python shell I press ctrl+c and it stops the command with keyboard interrupt. But in PyDev consoles it does a text copy instead.

How do I stop a command in this console without terminating it?

like image 778
Matan David Avatar asked Dec 20 '25 15:12

Matan David


1 Answers

If you are running the scripts from an interactive console with newish PyDev (not sure which version this feature arrived) then you can press the Yellow stop to achieve what you want.

interrupt interactive console

If you are simply running the script (not via the interactive console) then I recommend a feature request at PyDev. https://sw-brainwy.rhcloud.com/

like image 121
Jonah Graham Avatar answered Dec 23 '25 04:12

Jonah Graham