mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-03 17:44:30 +00:00
parent
d4ec68b9ab
commit
8a79535b84
1 changed files with 13 additions and 0 deletions
|
@ -88,6 +88,19 @@ You can see the bindings that are enabled by default in vim mode [here](https://
|
|||
|
||||
The details of the context are a little out of scope for this doc, but suffice to say that `menu` is true when a menu is open (e.g. the completions menu), `VimWaiting` is true after you type `f` or `t` when we’re waiting for a new key (and you probably don’t want bindings to happen). Please reach out on [GitHub](https://github.com/zed-industries/zed) if you want help making a key bindings work.
|
||||
|
||||
### Examples
|
||||
|
||||
Binding `jk` to exit insert mode and go to normal mode:
|
||||
|
||||
```
|
||||
{
|
||||
"context": "Editor && vim_mode == insert && !menu",
|
||||
"bindings": {
|
||||
"j k": ["vim::SwitchMode", "Normal"]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Subword motion
|
||||
|
||||
Subword motion is not enabled by default. To enable it, add these bindings to your keymap.
|
||||
|
|
Loading…
Reference in a new issue