mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-03 17:44:30 +00:00
Clarify key binding documentation (#11644)
Fixes #10762 Release Notes: - N/A
This commit is contained in:
parent
45f12b9426
commit
0d760d8d19
1 changed files with 6 additions and 1 deletions
|
@ -77,7 +77,6 @@ A common request is to be able to map from one sequence of keys to another. As o
|
|||
[
|
||||
{
|
||||
"bindings": {
|
||||
"j k": ["workspace::SendKeystrokes", "escape"],
|
||||
"alt-down": ["workspace::SendKeystrokes", "down down down down"],
|
||||
"cmd-alt-c": [
|
||||
"workspace::SendKeystrokes",
|
||||
|
@ -85,6 +84,12 @@ A common request is to be able to map from one sequence of keys to another. As o
|
|||
],
|
||||
"cmd-alt-r": ["workspace::SendKeystrokes", "cmd-p README enter"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "Editor && vim_mode == insert",
|
||||
"bindings": {
|
||||
"j k": ["workspace::SendKeystrokes", "escape"],
|
||||
}
|
||||
}
|
||||
]
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue