Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove Pycharm Breakpoint Thing

Tags:

pycharm

So... I really don't know how to phrase this question because I don't know what is happening but there's this thunderbolt icon that pycharm keeps jumping to everytime I save a file and it's incredibly annoying. I've inserted a picture of the icon and if anyone knows how to remove this thing please tell me!

enter image description here

like image 908
WillHaack Avatar asked Sep 17 '14 04:09

WillHaack


People also ask

How do I remove a break point?

To Delete a Single BreakpointIn the Query Editor window, right-click the breakpoint, and then click Delete Breakpoint. In the Breakpoints window, right-click the breakpoint, and then click Delete on the shortcut menu. In the Breakpoints window, select the breakpoint, and then press DELETE.

How do you remove a breakpoint in Python?

To remove all commands from a breakpoint, type commands and follow it immediately with end ; that is, give no commands. Specifying any command resuming execution (currently continue , step , next , return , jump , skip , and quit ) terminates the command list as if that command was immediately followed by end .

What does the lightning bolt mean in PyCharm?

button to resume the script execution. The exception is here. Another breakpoint appeared as well: by default PyCharm will halt for any exception that wasn't caught in your code, and it'll show an icon of a breakpoint with a lightning bolt. The debugger also shows the error message.


1 Answers

It is a Python Exception Breakpoint. I had accidentally started a process running and the breakpoint was created.

It was not possible for me to delete it using the Run | View Breakpoints dialog, I presume because it was on a running process.

Answer:

Run | Stop 'your_process'
like image 137
Miles Winther Avatar answered Dec 30 '22 21:12

Miles Winther