Compare commits

...

2 commits

Author SHA1 Message Date
Bruno BELANYI 84fc1601c5 home: vim: 'unimpaired' mappings for formatting
All checks were successful
continuous-integration/drone/push Build is passing
I'll migrate to calling the lua API directly if they stop expecting a
non-nil argument.
2023-03-20 09:52:05 +00:00
Bruno BELANYI 0241bfc781 home: vim: modify 'unimpaired' quickfix mappings 2023-03-20 09:52:05 +00:00

View file

@ -70,13 +70,14 @@ local keys = {
b = "Light background",
c = "Cursor line",
d = "Diff",
e = { "<cmd>lwindow<CR>", "Location list" },
f = { "<cmd>cwindow<CR>", "Quickfix list" },
f = { "<cmd>FormatEnable<CR>", "LSP Formatting" },
h = "Search high-lighting",
i = "Case insensitive search",
l = "List mode",
n = "Line numbers",
r = "Relative line numbers",
p = { "<cmd>lwindow<CR>", "Location list" },
q = { "<cmd>cwindow<CR>", "Quickfix list" },
u = "Cursor column",
v = "Virtual editing",
w = "Text wrapping",
@ -88,12 +89,13 @@ local keys = {
b = "Light background",
c = "Cursor line",
d = "Diff",
e = { "<cmd>lclose<CR>", "Location list" },
f = { "<cmd>cclose<CR>", "Quickfix list" },
f = { "<cmd>FormatDisable<CR>", "LSP Formatting" },
h = "Search high-lighting",
i = "Case insensitive search",
l = "List mode",
n = "Line numbers",
p = { "<cmd>lclose<CR>", "Location list" },
q = { "<cmd>cclose<CR>", "Quickfix list" },
r = "Relative line numbers",
u = "Cursor column",
v = "Virtual editing",
@ -106,12 +108,13 @@ local keys = {
b = "Light background",
c = "Cursor line",
d = "Diff",
e = { "<Plug>(qf_loc_toggle)", "Location list" },
f = { "<Plug>(qf_qf_toggle)", "Quickfix list" },
f = { "<cmd>FormatToggle<CR>", "LSP Formatting" },
h = "Search high-lighting",
i = "Case insensitive search",
l = "List mode",
n = "Line numbers",
p = { "<Plug>(qf_loc_toggle)", "Location list" },
q = { "<Plug>(qf_qf_toggle)", "Quickfix list" },
r = "Relative line numbers",
u = "Cursor column",
v = "Virtual editing",