From f7cdcfe25f01ea7b48caedb3c0505e5a071f9168 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 25 Jul 2016 17:44:02 +0200 Subject: [PATCH] update 'open' doc, #9651 --- src/vs/workbench/api/node/extHostApiCommands.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/node/extHostApiCommands.ts b/src/vs/workbench/api/node/extHostApiCommands.ts index 5f2ffc7831d..4f5c1625e33 100644 --- a/src/vs/workbench/api/node/extHostApiCommands.ts +++ b/src/vs/workbench/api/node/extHostApiCommands.ts @@ -218,7 +218,7 @@ class ExtHostApiCommands { this._register('vscode.open', (resource: URI, column: vscode.ViewColumn) => { return this._commands.executeCommand('_workbench.open', [resource, typeConverters.fromViewColumn(column)]); }, { - description: 'Opens the provided resource in the editor. Can be a text or binary file.', + description: 'Opens the provided resource in the editor. Can be a text or binary file, or a http(s) url', args: [ { name: 'resource', description: 'Resource to open', constraint: URI }, { name: 'column', description: '(optional) Column in which to open', constraint: v => v === void 0 || typeof v === 'number' }