Skip to content

Commit

Permalink
add consoleTitle to launch.json properties schema
Browse files Browse the repository at this point in the history
consoleTitle is effectively an undocumented feature. pydebug accepts the config key, but vscode will report a problem because it is missing from the schema. see [debugpy issue](microsoft/debugpy#1178) and [microsoft#13040](microsoft#13040)

I used the phrase "console or terminal" because I noticed the name was represented on both integratedTerminal and internalConsole. I didn't test externalTerminal.
  • Loading branch information
trysten authored Nov 2, 2023
1 parent ff604ca commit 0eb1706
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -979,6 +979,10 @@
"internalConsole"
]
},
"consoleTitle": {
"default": "Python Debug Console",
"description": "Name for debug console or terminal"
},
"cwd": {
"default": "${workspaceFolder}",
"description": "Absolute path to the working directory of the program being debugged. Default is the root directory of the file (leave empty).",
Expand Down

0 comments on commit 0eb1706

Please sign in to comment.