mirror of
https://github.com/hyzendust/KickestEnd.nvim.git
synced 2026-02-15 04:01:13 +01:00
Fix: double q logic interfering with the visual mode copy to clipbaord logic
This commit is contained in:
@@ -741,7 +741,7 @@ end
|
|||||||
for i = 32, 126 do
|
for i = 32, 126 do
|
||||||
local ch = string.char(i)
|
local ch = string.char(i)
|
||||||
if ch ~= 'q' then
|
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
|
if flush_pending_q_before(ch) then
|
||||||
return ''
|
return ''
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user