Skip to content

Commit f7cdcfe

Browse files
committed
update 'open' doc, microsoft#9651
1 parent da56a2c commit f7cdcfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/api/node/extHostApiCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ class ExtHostApiCommands {
218218
this._register('vscode.open', (resource: URI, column: vscode.ViewColumn) => {
219219
return this._commands.executeCommand('_workbench.open', [resource, typeConverters.fromViewColumn(column)]);
220220
}, {
221-
description: 'Opens the provided resource in the editor. Can be a text or binary file.',
221+
description: 'Opens the provided resource in the editor. Can be a text or binary file, or a http(s) url',
222222
args: [
223223
{ name: 'resource', description: 'Resource to open', constraint: URI },
224224
{ name: 'column', description: '(optional) Column in which to open', constraint: v => v === void 0 || typeof v === 'number' }

0 commit comments

Comments
 (0)