From e48be30266a836640d74fbda086041863e35cc47 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Sun, 31 Aug 2025 20:39:26 +0200 Subject: [PATCH] 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 --- assets/keymaps/vim.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/keymaps/vim.json b/assets/keymaps/vim.json index bd6eb3982cd9860b2635a3390d47484f1a6dbe55..fd33b888b742bff8ba6a3c1b1ff15b8dbe0c11f8 100644 --- a/assets/keymaps/vim.json +++ b/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",