Clarify key binding documentation (#11644)

Fixes #10762

Release Notes:

- N/A
This commit is contained in:
Conrad Irwin 2024-05-09 22:42:09 -06:00 committed by GitHub
parent 45f12b9426
commit 0d760d8d19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,7 +77,6 @@ A common request is to be able to map from one sequence of keys to another. As o
[ [
{ {
"bindings": { "bindings": {
"j k": ["workspace::SendKeystrokes", "escape"],
"alt-down": ["workspace::SendKeystrokes", "down down down down"], "alt-down": ["workspace::SendKeystrokes", "down down down down"],
"cmd-alt-c": [ "cmd-alt-c": [
"workspace::SendKeystrokes", "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"] "cmd-alt-r": ["workspace::SendKeystrokes", "cmd-p README enter"]
} }
},
{
"context": "Editor && vim_mode == insert",
"bindings": {
"j k": ["workspace::SendKeystrokes", "escape"],
}
} }
] ]
``` ```