mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
plugins/inc-rename: fix type in settings declaration
Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
parent
b35e6830e0
commit
b0fd7f1d6a
1 changed files with 5 additions and 3 deletions
|
|
@ -46,9 +46,11 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
the behavior of command preview).
|
||||
'';
|
||||
|
||||
input_buffer_type = defaultNullOpts.mkNullable (types.enum [ "dressing" ]) null ''
|
||||
The type of the external input buffer to use.
|
||||
'';
|
||||
input_buffer_type =
|
||||
defaultNullOpts.mkNullable (with types; either (enum [ "dressing" ]) rawLua) null
|
||||
''
|
||||
The type of the external input buffer to use.
|
||||
'';
|
||||
|
||||
post_hook = defaultNullOpts.mkRaw null ''
|
||||
Callback to run after renaming, receives the result table (from LSP
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue