Fix: double q logic interfering with the visual mode copy to clipbaord logic

This commit is contained in:
psychhim
2025-11-11 00:28:22 +05:30
parent aee54ab131
commit 2a2651078e

View File

@@ -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