rm un-needed mappings

This commit is contained in:
siduck 2022-05-21 12:33:19 +05:30
parent cef2899bba
commit ed68c4b07d
5 changed files with 3 additions and 18 deletions

View file

@ -211,16 +211,4 @@ M.gitsigns = function()
}
end
M.misc_mappings = function()
local map = nvchad.map
-- Allow moving the cursor through wrapped lines with j, k, <Up> and <Down>
-- http://www.reddit.com/r/vim/comments/2k4cbr/problem_with_gj_and_gk/
-- empty mode is same as using :map
-- also don't use g[j|k] when in operator pending mode, so it doesn't alter d, y or c behaviour
map("", "j", 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', { expr = true })
map("", "k", 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', { expr = true })
map("", "<Down>", 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', { expr = true })
map("", "<Up>", 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', { expr = true })
end
return M