This commit is contained in:
Matt Bierner 2018-09-20 12:52:48 -07:00 коммит произвёл GitHub
Родитель 7d617f04ea
Коммит b8c2c0b0da
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -11,6 +11,13 @@ MetaDescription: Visual Studio Code extensions (plug-ins) complex commands Refer
This document lists the set of Visual Studio Code complex commands. They are called complex commands because they require parameters and often return a value. You can use the commands in conjunction with the `executeCommand` API.
The following is a sample of how to open a new folder in VS Code:
```javascript
let uri = Uri.file('/some/path/to/folder');
let success = await commands.executeCommand('vscode.openFolder', uri);
```
## Commands
`vscode.executeWorkspaceSymbolProvider` - Execute all workspace symbol provider.