File tree 2 files changed +14
-1
lines changed
plugins/by-name/fastaction
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -147,6 +147,19 @@ rec {
147
147
mkLuaFn' = args : mkNullOrLuaFn' ( processDefaultNullArgs args ) ;
148
148
mkLuaFn = pluginDefault : description : mkLuaFn' { inherit pluginDefault description ; } ;
149
149
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
+
150
163
mkNum' = args : mkNullableWithRaw' ( args // { type = types . number ; } ) ;
151
164
mkNum = pluginDefault : description : mkNum' { inherit pluginDefault description ; } ;
152
165
mkInt' = args : mkNullableWithRaw' ( args // { type = types . int ; } ) ;
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin {
140
140
Keys to use to dismiss the popup.
141
141
'' ;
142
142
143
- override_function = defaultNullOpts . mkNullable types . rawLua { __raw = "function(_) end" ; } ''
143
+ override_function = defaultNullOpts . mkRaw "function(_) end" ''
144
144
Override function to map keys to actions.
145
145
146
146
```lua
You can’t perform that action at this time.
0 commit comments