mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Finalize notebookDebugOptions API (#163316)
* Finalize notebookDebugOptions API Fix #147264 * Backcompat for the option from vscode-jupyter * Undo comment * Fix build
This commit is contained in:
@@ -285,8 +285,12 @@ export abstract class ExtHostDebugServiceBase implements IExtHostDebugService, E
|
||||
repl: options.consoleMode === DebugConsoleMode.MergeWithParent ? 'mergeWithParent' : 'separate',
|
||||
noDebug: options.noDebug,
|
||||
compact: options.compact,
|
||||
debugUI: options.debugUI,
|
||||
suppressSaveBeforeStart: options.suppressSaveBeforeStart
|
||||
suppressSaveBeforeStart: options.suppressSaveBeforeStart,
|
||||
|
||||
// Check debugUI for back-compat, #147264
|
||||
suppressDebugStatusbar: options.suppressDebugStatusbar ?? (options as any).debugUI?.simple,
|
||||
suppressDebugToolbar: options.suppressDebugToolbar ?? (options as any).debugUI?.simple,
|
||||
suppressDebugView: options.suppressDebugView ?? (options as any).debugUI?.simple,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user