You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want nvim-dap to allow easy toggling of the BreakpointExceptionFilter, to allow catching different types of exceptions. I am learning how to use it with debugpy for python, and I would like to have an option to jump into a debugger for the user's code raised exceptions.
Ideas or possible solutions
add additional fields to adapter/configuration tables or a separate config table, ideally it should be toggle as in VSCode: link to debugpy-faq
add a widget to toggle the option visually
The text was updated successfully, but these errors were encountered:
Ok, so I have managed to find require("dap").set_exception_breakpoints() in the help:). A widget for it might still be nice addition. Feel free to close if you think otherwise.
Overall, I think that mentioning defaults table near the adapter configuration might be beneficial in the help. This table seems complimentary to the setup done in require("dap").adapters.<name>.
Problem Statement
I want nvim-dap to allow easy toggling of the BreakpointExceptionFilter, to allow catching different types of exceptions. I am learning how to use it with debugpy for python, and I would like to have an option to jump into a debugger for the user's code raised exceptions.
Ideas or possible solutions
The text was updated successfully, but these errors were encountered: