mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-02-24 04:18:03 +00:00
lib: fix lz.n map type
This commit is contained in:
parent
d8984385db
commit
b79899b7a6
1 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@
|
||||||
mode = mkOption {
|
mode = mkOption {
|
||||||
description = "Modes to bind in";
|
description = "Modes to bind in";
|
||||||
type = listOf str;
|
type = listOf str;
|
||||||
default = ["n"];
|
default = ["n" "x" "s" "o"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -194,7 +194,7 @@
|
||||||
keys = mkOption {
|
keys = mkOption {
|
||||||
description = "Lazy-load on key mapping";
|
description = "Lazy-load on key mapping";
|
||||||
default = null;
|
default = null;
|
||||||
type = nullOr (oneOf [str (listOf str) lznKeysSpec]); # TODO: support lz.n.KeysSpec
|
type = nullOr (oneOf [str (listOf lznKeysSpec) (listOf str)]); # TODO: support lz.n.KeysSpec
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: enabled, beforeAll, colorscheme, priority, load
|
# TODO: enabled, beforeAll, colorscheme, priority, load
|
||||||
|
|
Loading…
Add table
Reference in a new issue