Roger
Roger

Reputation: 408

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?

Upvotes: 8

Views: 5046

Answers (2)

Dwind
Dwind

Reputation: 63

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 :)

Upvotes: 2

Frédéric Hamidi
Frédéric Hamidi

Reputation: 263187

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.

Upvotes: 12

Related Questions