Clarify key binding documentation (#11644)

Conrad Irwin created

Fixes #10762

Release Notes:

- N/A

Change summary

docs/src/key-bindings.md | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

Detailed changes

docs/src/key-bindings.md 🔗

@@ -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"],
+    }
   }
 ]
 ```