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;
|
inherit mode key action;
|
||||||
options = {
|
options = {
|
||||||
inherit desc;
|
inherit desc;
|
||||||
silent = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue