fix: Stop automatically setting <silent>
This commit is contained in:
parent
ee3c3bc32f
commit
b622ddfa83
2 changed files with 4 additions and 2 deletions
|
@ -5,7 +5,6 @@ _: {
|
|||
inherit mode key action;
|
||||
options = {
|
||||
inherit desc;
|
||||
silent = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -31,7 +31,10 @@ in {
|
|||
mapAttrsToList
|
||||
(d: k:
|
||||
keys.mkWithOpts ["n" "x"] k "v:count == 0 ? 'g${k}' : '${k}'" d
|
||||
{expr = true;})
|
||||
{
|
||||
expr = true;
|
||||
silent = true;
|
||||
})
|
||||
{
|
||||
Down = "j";
|
||||
Up = "k";
|
||||
|
|
Loading…
Reference in a new issue