diff --git a/docs-preview-844/options.html b/docs-preview-844/options.html index 99584ec5..188659fb 100644 --- a/docs-preview-844/options.html +++ b/docs-preview-844/options.html @@ -1984,8 +1984,8 @@ boolean
A list of Neovim autogroups, which are used to organize and manage related autocommands together. Groups allow multiple autocommands to be cleared -or redefined collectively, preventing duplicate definitions.
Each autogroup consists of a name, a boolean indicating whether to clear -existing autocommands, and a list of associated autocommands.
+or redefined collectively, preventing duplicate definitions.Each autogroup consists of a name and a boolean indicating whether to clear +existing autocommands.
Type: list of (submodule)
@@ -2009,7 +2009,7 @@ list of (submodule)Whether to enable this autogroup
+Whether to enable this autocommand group.
Type: boolean
@@ -2085,8 +2085,8 @@ stringA list of Neovim autocommands to be registered.
Each entry defines an autocommand, specifying events, patterns, optional -callbacks, commands, groups, and execution settings.
+A list of Neovim autocommands to be registered.
Each entry defines an autocommand, specifying events, patterns, a callback or Vim +command, an optional group, a description, and execution settings.
Type: list of (submodule)
@@ -2110,7 +2110,7 @@ list of (submodule)Whether to enable this autocommand
+Whether to enable this autocommand.
Type: boolean
@@ -2137,7 +2137,7 @@ booleanThe file pattern(s) that determine when the autocommand applies.
+Lua function to be called when the event(s) are triggered.
Type: null or (luaInline)
@@ -2169,7 +2169,8 @@ null or (luaInline)Vim command string instead of a Lua function.
+Vim command to be executed when the event(s) are triggered.
+Cannot be defined if the callback
option is already defined.
Type: null or string
@@ -2301,7 +2302,7 @@ booleanWhether autocommand run only once.
+Whether to run the autocommand only once.
Type: boolean
@@ -2325,7 +2326,7 @@ booleanThe file pattern(s) that determine when the autocommand applies).
+The file pattern(s) that determine when the autocommand applies.
Type: null or (list of string)