vim: Fix NormalBefore with completions shown (#37272)

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
This commit is contained in:
Finn Evers
2025-08-31 18:39:26 +00:00
committed by GitHub
parent babc0c09f0
commit e48be30266
+1 -1
View File
@@ -324,7 +324,7 @@
}
},
{
"context": "vim_mode == insert && !menu",
"context": "vim_mode == insert",
"bindings": {
"ctrl-c": "vim::NormalBefore",
"ctrl-[": "vim::NormalBefore",