Compare commits

..

2 commits

Author SHA1 Message Date
raf
b99cf9b5e1
Merge e40cce5653 into fd90cf7fd5 2024-08-17 11:08:50 +00:00
Ching Pei Yang
e40cce5653
fix: map descriptions (#358)
* remove unused

* maps: fix missing description
2024-08-17 13:08:47 +02:00
2 changed files with 2 additions and 18 deletions

View file

@ -44,23 +44,7 @@
# legacy stuff # legacy stuff
mapOption = submodule { mapOption = submodule {
options = options = mapConfigOptions;
mapConfigOptions
// {
action = mkOption {
type = str;
description = "The action to execute.";
};
lua = mkOption {
type = bool;
description = ''
If true, `action` is considered to be lua code.
Thus, it will not be wrapped in `""`.
'';
default = false;
};
};
}; };
mapOptions = mode: mapOptions = mode:

View file

@ -37,7 +37,7 @@ in {
else keymap.action; else keymap.action;
getOpts = keymap: { getOpts = keymap: {
inherit (keymap) silent nowait script expr unique noremap; inherit (keymap) desc silent nowait script expr unique noremap;
}; };
toLuaKeymap = { toLuaKeymap = {