Compare commits

...

4 Commits

Author SHA1 Message Date
Paul Trowbridge d0ea9296ac Merge branch 'v2.0' into pt 2023-04-06 12:09:06 -04:00
siduck 907b112514 make some mapping keybinds lowercased (#1897) 2023-04-05 22:07:36 +05:30
prometheusalpha 3479853e69 feat(mappings): add description to movement keys in normal mode 2023-04-05 16:22:43 +05:30
hoangnh280 0619ef4e1e fix(mappings): fix description of j key in x mode 2023-04-05 08:29:18 +05:30
1 changed files with 8 additions and 8 deletions

View File

@ -37,10 +37,10 @@ M.general = {
-- http://www.reddit.com/r/vim/comments/2k4cbr/problem_with_gj_and_gk/
-- empty mode is same as using <cmd> :map
-- also don't use g[j|k] when in operator pending mode, so it doesn't alter d, y or c behaviour
["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', opts = { expr = true } },
["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', opts = { expr = true } },
["<Up>"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', opts = { expr = true } },
["<Down>"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', opts = { expr = true } },
["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "move down", opts = { expr = true } },
["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "move up", opts = { expr = true } },
["<Up>"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "move up", opts = { expr = true } },
["<Down>"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "move down", opts = { expr = true } },
-- new buffer
["<leader>b"] = { "<cmd> enew <CR>", "new buffer" },
@ -57,8 +57,8 @@ M.general = {
},
x = {
["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "move left", opts = { expr = true } },
["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "move down", opts = { expr = true } },
["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "move down", opts = { expr = true } },
["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "move up", opts = { expr = true } },
-- Don't copy the replaced text after pasting in visual mode
-- https://vim.fandom.com/wiki/Replace_a_word_with_yanked_text#Alternative_mapping_for_paste
["p"] = { 'p:let @+=@0<CR>:let @"=@0<CR>', "dont copy replaced text", opts = { silent = true } },
@ -70,14 +70,14 @@ M.tabufline = {
n = {
-- cycle through buffers
["<TAB>"] = {
["<tab>"] = {
function()
require("nvchad_ui.tabufline").tabuflineNext()
end,
"goto next buffer",
},
["<S-Tab>"] = {
["<S-tab>"] = {
function()
require("nvchad_ui.tabufline").tabuflinePrev()
end,