mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-13 01:35:59 +01:00
feat: add utility function for binding expressions
This commit is contained in:
parent
562e1847b0
commit
1439d0d033
1 changed files with 10 additions and 0 deletions
|
@ -16,6 +16,16 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mkExprBinding = key: action: desc:
|
||||||
|
self.mkIf (key != null) {
|
||||||
|
"${key}" = {
|
||||||
|
inherit action desc;
|
||||||
|
lua = true;
|
||||||
|
silent = true;
|
||||||
|
expr = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
mkBinding = key: action: desc:
|
mkBinding = key: action: desc:
|
||||||
self.mkIf (key != null) {
|
self.mkIf (key != null) {
|
||||||
"${key}" = {
|
"${key}" = {
|
||||||
|
|
Loading…
Reference in a new issue