Skip to content

Commit

Permalink
fix(yanky-nvim)!: change conflicting mapping <Leader>p → `<Leader>f…
Browse files Browse the repository at this point in the history
…y` (#831)

fix(yanky-nvim): change conflicting mapping `<Leader>p` → `<Leader>fy`
  • Loading branch information
nisavid committed Apr 5, 2024
1 parent 425fe07 commit 8eda9d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/astrocommunity/editing-support/yanky-nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ return {
opts = {
mappings = {
n = {
["<Leader>p"] = { "<Cmd>Telescope yank_history<CR>", desc = "Open Yank History" },
["<Leader>fy"] = { "<Cmd>Telescope yank_history<CR>", desc = "Find yanks" },
["y"] = { "<Plug>(YankyYank)", desc = "Yank text" },
["p"] = { "<Plug>(YankyPutAfter)", desc = "Put yanked text after cursor" },
["P"] = { "<Plug>(YankyPutBefore)", desc = "Put yanked text before cursor" },
Expand Down

0 comments on commit 8eda9d9

Please sign in to comment.