mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
lib: add mkSetLuaBinding
This commit is contained in:
parent
fcc360c3ce
commit
d8f3b73b2c
1 changed files with 7 additions and 12 deletions
|
@ -3,6 +3,7 @@
|
|||
inherit (lib.modules) mkIf mkDefault;
|
||||
inherit (lib.types) nullOr str;
|
||||
inherit (lib.attrsets) isAttrs mapAttrs;
|
||||
inherit (lib.generators) mkLuaInline;
|
||||
|
||||
mkLuaBinding = mode: key: action: desc:
|
||||
mkIf (key != null) {
|
||||
|
@ -99,23 +100,17 @@
|
|||
inherit mode lhs rhs desc;
|
||||
};
|
||||
|
||||
# Usage:
|
||||
#
|
||||
# ```
|
||||
# vim.lazy.plugins = {
|
||||
# telescope = {
|
||||
# # ...
|
||||
# keys = builtins.filter ({lhs, ...}: lhs != null) [
|
||||
# mkSetLznBinding mapping ":Telescope<CR>"
|
||||
# ];
|
||||
# }
|
||||
# }
|
||||
# ```
|
||||
mkSetLznBinding = binding: action: {
|
||||
lhs = binding.value;
|
||||
rhs = action;
|
||||
desc = binding.description;
|
||||
};
|
||||
|
||||
mkSetLuaLznBinding = binding: action: {
|
||||
lhs = binding.value;
|
||||
rhs = mkLuaInline "function() ${action} end";
|
||||
desc = binding.description;
|
||||
};
|
||||
};
|
||||
in
|
||||
binds
|
||||
|
|
Loading…
Reference in a new issue