fix: Stop automatically setting <silent>

This commit is contained in:
punkfairie 2024-11-25 21:11:06 -08:00
parent ee3c3bc32f
commit b622ddfa83
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696
2 changed files with 4 additions and 2 deletions

View file

@ -5,7 +5,6 @@ _: {
inherit mode key action; inherit mode key action;
options = { options = {
inherit desc; inherit desc;
silent = true;
}; };
}; };

View file

@ -31,7 +31,10 @@ in {
mapAttrsToList mapAttrsToList
(d: k: (d: k:
keys.mkWithOpts ["n" "x"] k "v:count == 0 ? 'g${k}' : '${k}'" d keys.mkWithOpts ["n" "x"] k "v:count == 0 ? 'g${k}' : '${k}'" d
{expr = true;}) {
expr = true;
silent = true;
})
{ {
Down = "j"; Down = "j";
Up = "k"; Up = "k";