Fix key-bindings.md example (#11415)

Fixed obselete command name in keymap example.
From "zed::OpenKeyMap" to "zed::OpenKeymap".



Release Notes:

- N/A
This commit is contained in:
sebbeutler 2024-05-13 18:09:59 +02:00 committed by GitHub
parent 2e8197ce6e
commit bc292186cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -61,7 +61,7 @@ A few examples:
```
"bindings": {
"cmd-k cmd-s": "zed::OpenKeyMap", // matches ⌘-k then ⌘-s
"cmd-k cmd-s": "zed::OpenKeymap", // matches ⌘-k then ⌘-s
"space e": "editor::Complete", // type space then e
"ç": "editor::Complete", // matches ⌥-c
}