lib: add mkLznBinding

This commit is contained in:
Ching Pei Yang 2024-08-03 19:18:25 +02:00
parent f43d3835f1
commit fc58c85524

View file

@ -71,6 +71,24 @@
mkLznBinding = mode: lhs: rhs: desc: {
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;
};
};
in
binds