Stop command execution in PyDev console

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

How to stop a command in this console without ending it?

+3
python console pydev
source share
1 answer

If you run scripts from the interactive console with the new PyDev (you don’t know which version this function has appeared in), you can press the yellow button to achieve what you want.

interrupt the interactive console

If you just run the script (not through the interactive console), I recommend calling the function in PyDev. https://sw-brainwy.rhcloud.com/

+1
source share

All Articles