PythonBreakpoints
PythonBreakpoints copied to clipboard
Sublime Text plugin to set Python breakpoints
I am using sublack to format my code on save with Black formatter, and I noticed that formatting the code according to Black "breaks the created breakpoints". Steps to reproduce...
I've tried everything to remove them but the white circles just won't go away. The break point is long gone, but they remain. I've: set `"gutter_icon": ""`, _disabled_ the package,...
Thank you for creating this package, it's definitely a daily driver. Is there anyway to set `"debugger"` on a per project basis? Something in `.sublime-project` files? Most of my projects...
I really like the tool, just wanted to add my own one liner my users PythonBreakpoints.sublime-settings ``` { "breakpoint_string": "print '-'*90; print locals(); print '-'*90; import ipdb; ipdb.set_trace()" } ```