Skip to content

Commit

Permalink
Workaround which-key command mode bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dylan-chong committed Jan 21, 2024
1 parent fd52b78 commit d03e28b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .config/lvim/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ lvim.builtin.which_key.mappings['%'] = {
lvim.builtin.which_key.mappings['t'] = {
h = { "gT", "Previous tab" },
l = { "gt", "Next tab" },
n = { ":tabnew<Space>", "New tab" },
c = { ":tabclose", "Close tab" },
n = { ":tabnew<Space><C-f>a", "New tab" },
c = { ":tabclose<C-f>a", "Close tab" },
o = { ":tabonly<CR>", "Close other tabs" },
m = { ":tabm<Space>", "Move tab" },
m = { ":tabm<Space><C-f>a", "Move tab" },
}

-- Strip ^M from recently pasted text
Expand Down

0 comments on commit d03e28b

Please sign in to comment.