feat: add key mapping for paste overwrite

This commit is contained in:
2024-09-14 15:21:49 -04:00
parent 22aa2b890a
commit 7cda320f8c
2 changed files with 40 additions and 0 deletions
+5
View File
@@ -73,3 +73,8 @@ add_keymap("<leader>qP", function()
end
end)
end, "Test Prompt")
-- Paste over text with overwrite
add_keymap("<leader>cp", function()
data.func.paste_overwrite()
end, "Paste overwrite", "n")