vim: Fix `NormalBefore` with completions shown (#37272)

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

Change summary

assets/keymaps/vim.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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",