fix: use better name for mapping
This commit is contained in:
parent
9a45bb3f20
commit
16a0c97fc9
@ -121,7 +121,7 @@ M.mappings = {
|
|||||||
forward = "<C-l>",
|
forward = "<C-l>",
|
||||||
next_line = "<C-k>",
|
next_line = "<C-k>",
|
||||||
prev_line = "<C-j>",
|
prev_line = "<C-j>",
|
||||||
top_of_line = "<C-a>",
|
beginning_of_line = "<C-a>",
|
||||||
},
|
},
|
||||||
--better window movement
|
--better window movement
|
||||||
window_nav = {
|
window_nav = {
|
||||||
|
@ -51,7 +51,7 @@ M.misc = function()
|
|||||||
map("i", inav.forward, "<Right>")
|
map("i", inav.forward, "<Right>")
|
||||||
map("i", inav.next_line, "<Up>")
|
map("i", inav.next_line, "<Up>")
|
||||||
map("i", inav.prev_line, "<Down>")
|
map("i", inav.prev_line, "<Down>")
|
||||||
map("i", inav.top_of_line, "<ESC>^i")
|
map("i", inav.beginning_of_line, "<ESC>^i")
|
||||||
end
|
end
|
||||||
|
|
||||||
-- easier navigation between windows
|
-- easier navigation between windows
|
||||||
|
Loading…
Reference in New Issue
Block a user