Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions api/references/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ let success = await commands.executeCommand('vscode.openFolder', uri);
- _query_ - Search string
- _(returns)_ - A promise that resolves to an array of SymbolInformation and DocumentSymbol instances.

`vscode.executeDefinitionProvider` - Execute all definition provider.
`vscode.executeDefinitionProvider` - Execute all definition providers.

- _uri_ - Uri of a text document
- _position_ - Position of a symbol
- _(returns)_ - A promise that resolves to an array of Location instances.

`vscode.executeDeclarationProvider` - Execute all declaration provider.
`vscode.executeDeclarationProvider` - Execute all declaration providers.

- _uri_ - Uri of a text document
- _position_ - Position of a symbol
Expand All @@ -51,7 +51,7 @@ let success = await commands.executeCommand('vscode.openFolder', uri);
- _position_ - Position of a symbol
- _(returns)_ - A promise that resolves to an array of Location instances.

`vscode.executeHoverProvider` - Execute all hover provider.
`vscode.executeHoverProvider` - Execute all hover providers.

- _uri_ - Uri of a text document
- _position_ - Position of a symbol
Expand Down