mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
declare module 'vscode' {
|
|
|
|
// eslint-disable-next-line vscode-dts-region-comments
|
|
// @roblourens: new debug session option for simple UI (see https://github.com/microsoft/vscode/issues/128588)
|
|
|
|
/**
|
|
* Options for {@link debug.startDebugging starting a debug session}.
|
|
*/
|
|
export interface DebugSessionOptions {
|
|
|
|
debugUI?: {
|
|
/**
|
|
* When true, the debug toolbar will not be shown for this session, the window statusbar color will not be changed, and the debug viewlet will not be automatically revealed.
|
|
*/
|
|
simple?: boolean;
|
|
};
|
|
|
|
/**
|
|
* When true, a save will not be triggered for open editors when starting a debug session, regardless of the value of the `debug.saveBeforeStart` setting.
|
|
*/
|
|
suppressSaveBeforeStart?: boolean;
|
|
}
|
|
}
|