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
This might be possible, but it probably won't be trivial. Right now, it's an all-or-nothing deal because the debugger is unable to determine whether an exception will be rescued at the moment the exception gets raised. One possible solution is for the debugger itself to rescue the exception at a stack level above the application. I'll look into it.
Your environment
vscode-ruby
version: v0.28.1useLanguageServer
is true in your configuration?) yesExpected behavior
Debugger pauses on breakpoints I pick only.
Actual behavior
Debugger pauses on any
raise
. I do not want that. I can continue but it breaks again on anotherraise
. Which is endless.Feature request
Like in Node.js - let me choose whether debugger should pause on exceptions, and which exceptions (caught / uncaught):
The text was updated successfully, but these errors were encountered: