diff options
| author | jdhao <jdhao@hotmail.com> | 2022-09-13 14:27:15 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-13 14:27:15 +0800 |
| commit | ebbdb27d01c644e5203dbd319e9392579bb99596 (patch) | |
| tree | 3c0f7e5b6b93e1c11431803aff6d89c99b176931 /core | |
| parent | 40fa9aab1cbd9ce176140d733ec7157fa7e0a5b6 (diff) | |
| parent | 1b1f0199da46377dd5d49983f538ae51ef0f9db5 (diff) | |
Merge pull request #106 from chaoqunya/chaoqunya-fix-typo-in-mappings
typo fixed
Diffstat (limited to 'core')
| -rw-r--r-- | core/mappings.lua | 2 |
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" }) |
