Skip to content

Commit f98caf6

Browse files
trystenluabud
andauthored
Add consoleTitle to launch.json properties schema (#22406)
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 [this debugpy issue](microsoft/debugpy#1178) and [#13040](#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. --------- Co-authored-by: Luciana Abud <[email protected]>
1 parent 2a976e3 commit f98caf6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

package.json

+4
Original file line numberDiff line numberDiff line change
@@ -980,6 +980,10 @@
980980
"internalConsole"
981981
]
982982
},
983+
"consoleTitle": {
984+
"default": "Python Debug Console",
985+
"description": "Display name of the debug console or terminal"
986+
},
983987
"cwd": {
984988
"default": "${workspaceFolder}",
985989
"description": "Absolute path to the working directory of the program being debugged. Default is the root directory of the file (leave empty).",

0 commit comments

Comments
 (0)