1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

typo fixed

This commit is contained in:
chaoqunya 2022-09-13 14:22:46 +08:00 committed by GitHub
parent 40fa9aab1c
commit 1b1f0199da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ keymap.set({ "n", "x" }, ";", ":")
keymap.set("i", "<c-u>", "<Esc>viwUea") keymap.set("i", "<c-u>", "<Esc>viwUea")
-- Turn the current word into title case -- Turn the current word into title case
keymap.set("i", "<c-u>", "<Esc>b~lea") keymap.set("i", "<c-t>", "<Esc>b~lea")
-- Paste non-linewise text above or below current line, see https://stackoverflow.com/a/1346777/6064933 -- Paste non-linewise text above or below current line, see https://stackoverflow.com/a/1346777/6064933
keymap.set("n", "<leader>p", "m`o<ESC>p``", { desc = "paste below current line" }) keymap.set("n", "<leader>p", "m`o<ESC>p``", { desc = "paste below current line" })