Skip to content

Commit ce50793

Browse files
Update launch.json schema (#243)
* Update `launch.json` schema * Add default value for `guiEventLoop` --------- Co-authored-by: Paula <[email protected]>
1 parent 926e65e commit ce50793

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

package.json

+11-2
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,10 @@
318318
"internalConsole"
319319
]
320320
},
321+
"consoleTitle": {
322+
"default": "Python Debug Console",
323+
"description": "Display name of the debug console or terminal"
324+
},
321325
"cwd": {
322326
"default": "${workspaceFolder}",
323327
"description": "Absolute path to the working directory of the program being debugged. Default is the root directory of the file (leave empty).",
@@ -426,7 +430,7 @@
426430
},
427431
"pyramid": {
428432
"default": false,
429-
"description": "Whether debugging Pyramid applications",
433+
"description": "Whether debugging Pyramid applications.",
430434
"type": "boolean"
431435
},
432436
"python": {
@@ -459,13 +463,18 @@
459463
},
460464
"subProcess": {
461465
"default": false,
462-
"description": "Whether to enable Sub Process debugging",
466+
"description": "Whether to enable Sub Process debugging.",
463467
"type": "boolean"
464468
},
465469
"sudo": {
466470
"default": false,
467471
"description": "Running debug program under elevated permissions (on Unix).",
468472
"type": "boolean"
473+
},
474+
"guiEventLoop": {
475+
"default": "matplotlib",
476+
"description": "The GUI event loop that's going to run. Possible values: \"matplotlib\", \"wx\", \"qt\", \"none\", or a custom function that'll be imported and run.",
477+
"type": "string"
469478
}
470479
}
471480
}

0 commit comments

Comments
 (0)