Skip to content

Commit ccae435

Browse files
committed
options: add defaultNullOpts.mkRaw
1 parent f11a877 commit ccae435

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

lib/options.nix

+13
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,19 @@ rec {
147147
mkLuaFn' = args: mkNullOrLuaFn' (processDefaultNullArgs args);
148148
mkLuaFn = pluginDefault: description: mkLuaFn' { inherit pluginDefault description; };
149149

150+
mkRaw' =
151+
args:
152+
mkNullable' (
153+
args
154+
// {
155+
type = types.rawLua;
156+
}
157+
// lib.optionalAttrs (args ? pluginDefault) {
158+
pluginDefault = lib.nixvim.mkRaw args.pluginDefault;
159+
}
160+
);
161+
mkRaw = pluginDefault: description: mkRaw' { inherit pluginDefault description; };
162+
150163
mkNum' = args: mkNullableWithRaw' (args // { type = types.number; });
151164
mkNum = pluginDefault: description: mkNum' { inherit pluginDefault description; };
152165
mkInt' = args: mkNullableWithRaw' (args // { type = types.int; });

plugins/by-name/fastaction/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin {
140140
Keys to use to dismiss the popup.
141141
'';
142142

143-
override_function = defaultNullOpts.mkNullable types.rawLua { __raw = "function(_) end"; } ''
143+
override_function = defaultNullOpts.mkRaw "function(_) end" ''
144144
Override function to map keys to actions.
145145
146146
```lua

0 commit comments

Comments
 (0)