Merge pull request #303 from diniamo/which-key-register-allow-null

which-key: allow null in registers
This commit is contained in:
raf 2024-06-12 06:14:15 +00:00 committed by GitHub
commit a86c59457c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -4,14 +4,14 @@
... ...
}: let }: let
inherit (lib.options) mkEnableOption mkOption; inherit (lib.options) mkEnableOption mkOption;
inherit (lib.types) attrsOf str; inherit (lib.types) attrsOf nullOr str;
in { in {
options.vim.binds.whichKey = { options.vim.binds.whichKey = {
enable = mkEnableOption "which-key keybind helper menu"; enable = mkEnableOption "which-key keybind helper menu";
register = mkOption { register = mkOption {
description = "Register label for which-key keybind helper menu"; description = "Register label for which-key keybind helper menu";
type = attrsOf str; type = attrsOf (nullOr str);
default = {}; default = {};
}; };
}; };