Setting line breakpoints in Intellij 15.02 does not work

Since yesterday, I have been on IntelliJ 15.02 and can no longer set any breakpoints. Neither clicking on the sidebar, nor on "Run β†’ Toggle Line Breakpoint". Is this a bug in IntelliJ? Or is there a way to disable / enable this feature? I appreciate any help.

+5
source share
2 answers

This seems to be a problem with the python plugin. I removed the python plugin and line breakpoints were again available. Then I reinstalled the plugin, and still everything is fine. I use the python plugin because I have Jython scripts that I call from Java code.

+13
source

The same thing happened to me, but I did not have the Python plugin installed.

I tried ( without success ):

  • Project Recovery
  • Invalid Caches
  • Restarting IntelliJ
  • Reinstall IntelliJ

Fortunately, disabling the PHP plugin helped.

Hope this helps someone.

EDIT (February 2, 2016) . This issue has been fixed in IntelliJ 15.0.3: https://youtrack.jetbrains.com/issue/IDEA-151085

+1
source

Source: https://habr.com/ru/post/1237911/


All Articles