-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement blocklist and allowlist for debugger configuration for justMyCode #13719
Comments
Thank you for the suggestion! We have marked this issue as "needs decision" to make sure we have a conversation about your idea. We plan to leave this feature request open for at least a month to see how many 👍 votes the opening comment gets to help us make our decision. |
Thanks for the suggestion! We can't add an additional button for step in into my code as it would need to be solved by VS Code upstream, but we could implement your second suggestion. If you're interested, you can request your first option to VS Code directly: http://github.com/Microsoft/vscode |
@luabud Since the issue is closed, so I take it as the second suggestion is reject as well ? |
@jahan01 We have this 'allowlist' and 'blocklist' in the debugger. But we haven't yet exposed this. You can use the "rules" field to do this, but it is not final. {
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"rules": [
{"path": "<glob pattern>", "include": true}, // Include or Exclude using a glob pattern or file name
{"module": "module name", "include": true}, // Include or Exclude by module name
],
}, |
Apologies, I had closed it by mistake 🤦♀️ |
Closing in favor of #13719 (comment). |
This is a feature request for breakpoint debugging - to add a new butting for "Step in into my code" in addition to current existing "Step in". This is same as PyCharms (or) any Jetbrains IDE.
This would help conditionally choosing in which part should I need to step into standard library.
so
justMyCode
is not helpful here - it either turns on or off the library debugging as whole.If you don't like it, then I would like to have
allowlist
(andblocklist
) options to specify libraries I want to step into (or not) whenjustMyCode
is set tofalse
. I think java debugger for vscode has something similar to this.The text was updated successfully, but these errors were encountered: