-
Notifications
You must be signed in to change notification settings - Fork 143
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
Debug: hide special variables and function variables #481
Comments
Try doing this in your launch.json: "variablePresentation": {
"function": "hide",
"special": "hide",
} |
Closing as the support to change how that's presented is already in the debugger backend by editing the You can follow microsoft/vscode-python-debugger#165 for a request to be able to set it in the settings and not only through individual launch configurations. |
Here's an example of my {
"version": "0.2.0",
"configurations": [
{
"name": "Attach debugger",
"type": "python",
"request": "attach",
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/code"
}
],
"port": 8001,
"host": "localhost",
"variablePresentation": {
"function": "hide",
"special": "hide",
},
},
],
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: