Skip to content

Commit bdd09f9

Browse files
authored
docs: use builtin runCommands (#70)
1 parent e2d1af0 commit bdd09f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/whichkey/extra.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ You can set `whichkey.sortOrder` in `settings.json` to `alphabetically` to alway
3535
## Bind shortcuts to submenu
3636

3737
To open a submenu with a shortcut, one can execute a [`whichkey.triggerKey`](./reference.md#trigger-key) command right after [`whichkey.show`](./reference.md#show).
38-
Here's an example `keybindings.json` using [ryuta46.multi-command](https://marketplace.visualstudio.com/items?itemName=ryuta46.multi-command):
38+
Here's an example `keybindings.json` using [`runCommands`](https://code.visualstudio.com/docs/getstarted/keybindings#_running-multiple-commands):
3939

4040
```json
4141
{
4242
"key": "alt+s",
43-
"command": "extension.multiCommand.execute",
43+
"command": "runCommands",
4444
"args": {
45-
"sequence": [
45+
"commands": [
4646
"whichkey.show",
4747
{ "command": "whichkey.triggerKey", "args": "s" },
4848
]

0 commit comments

Comments
 (0)