Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 1 addition & 15 deletions home/.config/nvim/lua/user/keymaps.lua
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,6 @@ local mappings = {
prefix = P.misc,
description = "Paste with OS key",
},
{
mode = { "i" },
keys = "<D-v>",
callback = [[<C-r>+]],
prefix = P.misc,
description = "Paste with OS key",
},
{
mode = { "n", "v", "t" },
keys = "<C-v>",
Expand Down Expand Up @@ -165,13 +158,6 @@ local mappings = {
prefix = P.misc,
description = "Replace one character",
},
{
mode = { "i" },
keys = "<C-v>",
callback = [[<C-r>+]],
prefix = P.misc,
description = "Paste with ctrl",
},
{
mode = { "n", "v" },
keys = "<leader>X",
Expand Down Expand Up @@ -2313,7 +2299,7 @@ local mappings = {
mode = { "n", "v" },
keys = "<leader>pr",
callback = function()
vim.cmd("PRReviewMenu")
vim.cmd("PR")
end,
prefix = P.git,
description = "Open PR menu",
Expand Down