fix(yanky): enable yank history in visual mode (#4048)

## Description

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.

## Checklist

- [x] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md)
guidelines.
This commit is contained in:
Jelte Fennema-Nio
2024-07-15 11:48:58 +02:00
committed by GitHub
parent 0f2d01dd01
commit 6911327a5e

View File

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