Fix broken keybindings

This commit is contained in:
Asocia
2021-07-13 23:15:02 +03:00
parent 366ddd20e2
commit 2b4256f076
2 changed files with 4 additions and 4 deletions

View File

@ -124,8 +124,8 @@ map("n", "<S-x>", ":bd!<CR>", opt) -- close tab
-- indent with tabs
map("n", "<TAB>", '>>', opt)
map("n", "<S-TAB>", '<<', opt)
map("v", "<TAB>", '>>', opt)
map("v", "<S-TAB>", '<<', opt)
map("v", "<TAB>", '>', opt)
map("v", "<S-TAB>", '<', opt)
map("n", "<F3>", ":set invhlsearch<CR>", opt)