mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
fix build
This commit is contained in:
parent
52339f0d58
commit
0d678ebd9d
1 changed files with 3 additions and 3 deletions
|
@ -27,18 +27,18 @@ let
|
||||||
Pattern or patterns to match literally against.
|
Pattern or patterns to match literally against.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buffer = helpers.defaultNullOpts.mkInt null ''
|
buffer = helpers.defaultNullOpts.mkInt "" ''
|
||||||
Buffer number for buffer local autocommands |autocmd-buflocal|.
|
Buffer number for buffer local autocommands |autocmd-buflocal|.
|
||||||
Cannot be used with <pattern>.
|
Cannot be used with <pattern>.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
description = helpers.defaultNullOpts.mkStr "" "A textual description of this autocommand.";
|
description = helpers.defaultNullOpts.mkStr "" "A textual description of this autocommand.";
|
||||||
|
|
||||||
callback = helpers.defaultNullOpts.mkStr null ''
|
callback = helpers.defaultNullOpts.mkStr "" ''
|
||||||
The name of a Vimscript function to call when this autocommand is triggered. Cannot be used with <command>.
|
The name of a Vimscript function to call when this autocommand is triggered. Cannot be used with <command>.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
command = helpers.defaultNullOpts.mkStr null ''
|
command = helpers.defaultNullOpts.mkStr "" ''
|
||||||
Vim command to execute on event. Cannot be used with <callback>
|
Vim command to execute on event. Cannot be used with <callback>
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue