Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I remove PyDev debugger breakpoints from deleted files?

Whenever I launch the debugger from PyDev it complaints about breakpoints on files that don't exists anymore:

pydev debugger: warning: trying to add breakpoint to file that does not exist: (some file path).py (will have no effect)

There are about a dozen of these phantom breakpoints on files that no longer exist in my workspace. Is there a way to suppress these or will I forever be saddled with these messages for removing files without removing their breakpoints first?

like image 612
Roger Avatar asked Feb 07 '12 15:02

Roger


2 Answers

The Debug perspective should give you access to a Breakpoints view (you can see its title bar in some of the screenshots in this tutorial).

This view should list all your breakpoints, even if they relate to deleted files, and allow you to disable or remove them.

like image 121
Frédéric Hamidi Avatar answered Nov 06 '22 09:11

Frédéric Hamidi


today I just encountered this problem and I figured out how to solved it. Very simple, you just need to click Run -> Remove all breakpoints :)

like image 28
Dwind Avatar answered Nov 06 '22 09:11

Dwind