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

@ -122,7 +122,8 @@ return {
keymaps.n["<leader>" .. command.keys] = {
cmd = function()
toggle_trouble_mode(command.mode)
end
end,
opts = { silent = true }
}
end
utils.add_keymaps(keymaps)