fix(yanky): Enable yank history in visual mode too

Being able to select from the yank history is useful if you want to
paste over something else by first selecting the stuff you want to
remove in visual mode.
This commit is contained in:
Jelte Fennema-Nio 2024-07-15 11:43:43 +02:00
parent 45af7e1fed
commit 5bc78c444f

View file

@ -17,6 +17,7 @@ return {
vim.cmd([[YankyRingHistory]])
end
end,
mode = { "n", "x" },
desc = "Open Yank History",
},
-- stylua: ignore