mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 00:49:03 +02:00
fix(yanky): use leader-p for telescope integration
This commit is contained in:
parent
5818e01f27
commit
e83d2c814f
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ return {
|
|||
},
|
||||
keys = {
|
||||
-- stylua: ignore
|
||||
{ "<leader>P", function() require("telescope").extensions.yank_history.yank_history({ }) end, desc = "Open Yank History" },
|
||||
{ "<leader>p", function() require("telescope").extensions.yank_history.yank_history({ }) end, desc = "Open Yank History" },
|
||||
{ "y", "<Plug>(YankyYank)", mode = { "n", "x" }, desc = "Yank text" },
|
||||
{ "p", "<Plug>(YankyPutAfter)", mode = { "n", "x" }, desc = "Put yanked text after cursor" },
|
||||
{ "P", "<Plug>(YankyPutBefore)", mode = { "n", "x" }, desc = "Put yanked text before cursor" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue