Merge pull request #1149 from alvarotroya/bugfix/fix_typo_in_insert_mode_keybindings

Fix typo in insert mode keybindings
This commit is contained in:
rebuilt 2021-07-28 23:03:59 +02:00 committed by GitHub
commit 71911176e9
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,9 +18,9 @@ local default_keys = {
{ "<A-j>", "<Esc>:m .+1<CR>==gi" },
{ "<A-k>", "<Esc>:m .-2<CR>==gi" },
-- navigation
{ "<A-Up>", "<C-\\><C-N><C-w>h" },
{ "<A-Up>", "<C-\\><C-N><C-w>k" },
{ "<A-Down>", "<C-\\><C-N><C-w>j" },
{ "<A-Left>", "<C-\\><C-N><C-w>k" },
{ "<A-Left>", "<C-\\><C-N><C-w>h" },
{ "<A-Right>", "<C-\\><C-N><C-w>l" },
},