assets/keymaps/vim.json 🔗
@@ -324,7 +324,7 @@
}
},
{
- "context": "vim_mode == insert && !menu",
+ "context": "vim_mode == insert",
"bindings": {
"ctrl-c": "vim::NormalBefore",
"ctrl-[": "vim::NormalBefore",
Finn Evers created
Follow-up to https://github.com/zed-industries/zed/pull/35985
The `!menu` is actually not needed and breaks other keybinds from that
context.
Release Notes:
- N/A
assets/keymaps/vim.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -324,7 +324,7 @@
}
},
{
- "context": "vim_mode == insert && !menu",
+ "context": "vim_mode == insert",
"bindings": {
"ctrl-c": "vim::NormalBefore",
"ctrl-[": "vim::NormalBefore",