diff --git a/src/vs/workbench/api/node/extHostApiCommands.ts b/src/vs/workbench/api/node/extHostApiCommands.ts index aeb9c080997..ad7a0e950c1 100644 --- a/src/vs/workbench/api/node/extHostApiCommands.ts +++ b/src/vs/workbench/api/node/extHostApiCommands.ts @@ -195,15 +195,6 @@ export class ExtHostApiCommands { ] }); - this._register('vscode.startDebug', (configuration?: any, folderUri?: URI) => { - return this._commands.executeCommand('_workbench.startDebug', configuration, folderUri); - }, { - description: 'Start a debugging session.', - args: [ - { name: 'configuration', description: '(optional) Name of the debug configuration from \'launch.json\' to use. Or a configuration json object to use.' } - ] - }); - this._register('vscode.diff', (left: URI, right: URI, label: string, options?: vscode.TextDocumentShowOptions) => { let editorOptions: ITextEditorOptions; if (options) {