Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lyf-is-coding/7adaf24cc2dfe7fb6ef0b5b9e6c9d5e4 to your computer and use it in GitHub Desktop.
Save lyf-is-coding/7adaf24cc2dfe7fb6ef0b5b9e6c9d5e4 to your computer and use it in GitHub Desktop.
VSCode Python debug: Hide special variables and function variables
// Ctrl + Shift + P: Open launch.json
// Then add these 3 lines under configurations
"variablePresentation": {
"function": "hide",
"special": "hide",
}
// Example:
{
// ...
"configurations": [
{
// ...
"variablePresentation": {
"function": "hide",
"special": "hide",
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment