keymaps: use listOf mapOption instead

This commit is contained in:
Pei Yang Ching 2024-08-23 14:16:07 +02:00
parent fd4ddbdd39
commit 34b462a744
3 changed files with 54 additions and 32 deletions

View file

@ -4,55 +4,74 @@
... ...
}: let }: let
inherit (lib.modules) mkIf mkMerge; inherit (lib.modules) mkIf mkMerge;
inherit (builtins) mapAttrs; inherit (lib.trivial) pipe;
inherit (lib.attrsets) mapAttrsToList;
inherit (lib.lists) flatten;
processLegacyMap = modes: legacyMap: [(legacyMap // {mode = modes;})]; legacyMapModes = {
normal = ["n"];
insert = ["i"];
select = ["s"];
visual = ["v"];
terminal = ["t"];
normalVisualOp = ["n" "v" "o"];
visualOnly = ["n" "x"];
operator = ["o"];
insertCommand = ["i" "c"];
lang = ["l"];
command = ["c"];
};
cfg = config.vim; cfg = config.vim;
in { in {
config = { config = {
vim.keymaps = mkMerge [ vim.keymaps = mkMerge [
(mkIf cfg.disableArrows { (
"<up>" = [ mkIf cfg.disableArrows [
{ {
key = "<up>";
mode = ["n" "i"]; mode = ["n" "i"];
action = "<nop>"; action = "<nop>";
noremap = false; noremap = false;
} }
];
"<down>" = [
{ {
key = "<down>";
mode = ["n" "i"]; mode = ["n" "i"];
action = "<nop>"; action = "<nop>";
noremap = false; noremap = false;
} }
];
"<left>" = [
{ {
key = "<left>";
mode = ["n" "i"]; mode = ["n" "i"];
action = "<nop>"; action = "<nop>";
noremap = false; noremap = false;
} }
];
"<right>" = [
{ {
key = "<right>";
mode = ["n" "i"]; mode = ["n" "i"];
action = "<nop>"; action = "<nop>";
noremap = false; noremap = false;
} }
]; ]
}) )
(mapAttrs (_key: processLegacyMap ["n"]) cfg.maps.normal) (
(mapAttrs (_key: processLegacyMap ["i"]) cfg.maps.insert) pipe cfg.maps
(mapAttrs (_key: processLegacyMap ["s"]) cfg.maps.select) [
(mapAttrs (_key: processLegacyMap ["v"]) cfg.maps.visual) (mapAttrsToList (
(mapAttrs (_key: processLegacyMap ["t"]) cfg.maps.terminal) oldMode: keybinds:
(mapAttrs (_key: processLegacyMap ["n" "v" "o"]) cfg.maps.normalVisualOp) mapAttrsToList (
(mapAttrs (_key: processLegacyMap ["n" "x"]) cfg.maps.visualOnly) key: bind:
(mapAttrs (_key: processLegacyMap ["o"]) cfg.maps.operator) bind
(mapAttrs (_key: processLegacyMap ["i" "c"]) cfg.maps.insertCommand) // {
(mapAttrs (_key: processLegacyMap ["l"]) cfg.maps.lang) inherit key;
(mapAttrs (_key: processLegacyMap ["c"]) cfg.maps.command) mode = legacyMapModes.${oldMode};
}
)
keybinds
))
flatten
]
)
]; ];
}; };
} }

View file

@ -31,6 +31,12 @@
options = options =
mapConfigOptions mapConfigOptions
// { // {
key = mkOption {
type = str;
description = ''
Key that triggers this keybind.
'';
};
mode = mkOption { mode = mkOption {
type = either str (listOf str); type = either str (listOf str);
description = '' description = ''
@ -44,22 +50,20 @@
}; };
# legacy stuff # legacy stuff
mapOption = submodule { legacyMapOption = submodule {
options = mapConfigOptions; options = mapConfigOptions;
}; };
mapOptions = mode: mapOptions = mode:
mkOption { mkOption {
description = "Mappings for ${mode} mode"; description = "Mappings for ${mode} mode";
type = attrsOf mapOption; type = attrsOf legacyMapOption;
default = {}; default = {};
}; };
in { in {
options.vim = { options.vim = {
keymaps = mkOption { keymaps = mkOption {
type = submodule { type = listOf mapType;
freeformType = attrsOf (listOf mapType);
};
description = "Custom keybindings."; description = "Custom keybindings.";
example = '' example = ''
maps = { maps = {

View file

@ -40,15 +40,14 @@ in {
inherit (keymap) desc silent nowait script expr unique noremap; inherit (keymap) desc silent nowait script expr unique noremap;
}; };
toLuaKeymap = key: bind: "vim.keymap.set(${toLuaObject bind.mode}, ${toLuaObject key}, ${toLuaObject (getAction bind)}, ${toLuaObject (getOpts bind)})"; toLuaKeymap = bind: "vim.keymap.set(${toLuaObject bind.mode}, ${toLuaObject bind.key}, ${toLuaObject (getAction bind)}, ${toLuaObject (getOpts bind)})";
maps = maps =
pipe pipe
# attrsOf (listOf mapOption) # listOf mapOption
cfg.keymaps cfg.keymaps
[ [
(mapAttrsToList (key: binds: (map toLuaKeymap)
concatLines (map (toLuaKeymap key) binds)))
concatLines concatLines
]; ];