mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
promote 'startDebugging' and remove 'startDebugSession' from debug API
This commit is contained in:
@@ -195,8 +195,8 @@ export class ExtHostApiCommands {
|
||||
]
|
||||
});
|
||||
|
||||
this._register('vscode.startDebug', (configuration?: any) => {
|
||||
return this._commands.executeCommand('_workbench.startDebug', configuration);
|
||||
this._register('vscode.startDebug', (configuration?: any, folderUri?: URI) => {
|
||||
return this._commands.executeCommand('_workbench.startDebug', configuration, folderUri);
|
||||
}, {
|
||||
description: 'Start a debugging session.',
|
||||
args: [
|
||||
|
||||
Reference in New Issue
Block a user