Last active
June 28, 2022 11:13
-
-
Save lyf-is-coding/7adaf24cc2dfe7fb6ef0b5b9e6c9d5e4 to your computer and use it in GitHub Desktop.
VSCode Python debug: Hide special variables and function variables
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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