Skip to content

Commit

Permalink
docs(configuration): Fix example keybindings for quickopen in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bryphe authored Aug 17, 2020
1 parent fb6123a commit 6daf28d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/configuration/key-bindings.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Onivim's keyboard configuration is designed to be mostly compatible with [VSCode
Keybindings are defined as a JSON array, like:
```
[
{ "key": "<C-P>", "command": "quickOpenFiles", "when": "editorTextFocus" }
{ "key": "<C-P>", "command": "workbench.action.quickOpen", "when": "editorTextFocus" }
]
```

Expand Down Expand Up @@ -57,7 +57,7 @@ Modifiers may be combined, for example:

```
[
{ "key": "<C-S-P>", "command": "quickOpenFiles", "when": "editorTextFocus" }
{ "key": "<C-S-P>", "command": "workbench.action.quickOpen", "when": "editorTextFocus" }
]
```

Expand Down

0 comments on commit 6daf28d

Please sign in to comment.