remove vscode.startDebug

This commit is contained in:
isidor
2017-10-02 16:59:28 +02:00
parent d230df67a8
commit 409d89c60b

View File

@@ -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) {