Add silent option to a lot of keymaps to hide command display.

This commit is contained in:
Martin Larsson 2024-10-30 17:47:29 +01:00
parent 23ed2e9964
commit 8263b02c70
6 changed files with 26 additions and 7 deletions

View file

@ -28,7 +28,7 @@ return {
}
})
require("utils").add_keymaps({
local keymaps = {
n = {
["[d"] = {
cmd = ":Lspsaga diagnostic_jump_prev<CR>"
@ -58,6 +58,9 @@ return {
cmd = ":Lspsaga incoming_calls<CR>"
},
}
})
}
local utils = require("utils")
utils.add_opts_to_all_mappings(keymaps, { silent = true })
utils.add_keymaps(keymaps)
end,
}