From 2a2651078e72c6fc239ec96927371383a9d7f132 Mon Sep 17 00:00:00 2001 From: psychhim Date: Tue, 11 Nov 2025 00:28:22 +0530 Subject: [PATCH] Fix: double q logic interfering with the visual mode copy to clipbaord logic --- lua/keymaps.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/keymaps.lua b/lua/keymaps.lua index 988ea3e..be3ce91 100644 --- a/lua/keymaps.lua +++ b/lua/keymaps.lua @@ -741,7 +741,7 @@ end for i = 32, 126 do local ch = string.char(i) if ch ~= 'q' then - vim.keymap.set({ 'i', 'v', 't' }, ch, function() + vim.keymap.set({ 'i', 't' }, ch, function() if flush_pending_q_before(ch) then return '' end