aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2022-09-13 14:27:15 +0800
committerGitHub <noreply@github.com>2022-09-13 14:27:15 +0800
commitebbdb27d01c644e5203dbd319e9392579bb99596 (patch)
tree3c0f7e5b6b93e1c11431803aff6d89c99b176931
parent40fa9aab1cbd9ce176140d733ec7157fa7e0a5b6 (diff)
parent1b1f0199da46377dd5d49983f538ae51ef0f9db5 (diff)
Merge pull request #106 from chaoqunya/chaoqunya-fix-typo-in-mappings
typo fixed
-rw-r--r--core/mappings.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mappings.lua b/core/mappings.lua
index 380d42d..e49fbba 100644
--- a/core/mappings.lua
+++ b/core/mappings.lua
@@ -8,7 +8,7 @@ keymap.set({ "n", "x" }, ";", ":")
keymap.set("i", "<c-u>", "<Esc>viwUea")
-- 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
keymap.set("n", "<leader>p", "m`o<ESC>p``", { desc = "paste below current line" })