Deploy PR #844 preview

This commit is contained in:
GitHub Actions 2025-04-21 06:52:54 +00:00
commit da064a6657

View file

@ -1984,8 +1984,8 @@ boolean</p>
<dd>
<p>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.</p><p>Each autogroup consists of a name, a boolean indicating whether to clear
existing autocommands, and a list of associated autocommands.</p>
or redefined collectively, preventing duplicate definitions.</p><p>Each autogroup consists of a name and a boolean indicating whether to clear
existing autocommands.</p>
<p><span class="emphasis"><em>Type:</em></span>
list of (submodule)</p>
@ -2009,7 +2009,7 @@ list of (submodule)</p>
</span>
</dt>
<dd>
<p>Whether to enable this autogroup</p>
<p>Whether to enable this autocommand group.</p>
<p><span class="emphasis"><em>Type:</em></span>
boolean</p>
@ -2085,8 +2085,8 @@ string</p>
</span>
</dt>
<dd>
<p>A list of Neovim autocommands to be registered.</p><p>Each entry defines an autocommand, specifying events, patterns, optional
callbacks, commands, groups, and execution settings.</p>
<p>A list of Neovim autocommands to be registered.</p><p>Each entry defines an autocommand, specifying events, patterns, a callback or Vim
command, an optional group, a description, and execution settings.</p>
<p><span class="emphasis"><em>Type:</em></span>
list of (submodule)</p>
@ -2110,7 +2110,7 @@ list of (submodule)</p>
</span>
</dt>
<dd>
<p>Whether to enable this autocommand</p>
<p>Whether to enable this autocommand.</p>
<p><span class="emphasis"><em>Type:</em></span>
boolean</p>
@ -2137,7 +2137,7 @@ boolean</p>
</span>
</dt>
<dd>
<p>The file pattern(s) that determine when the autocommand applies.</p>
<p>Lua function to be called when the event(s) are triggered.</p>
<p><span class="emphasis"><em>Type:</em></span>
null or (luaInline)</p>
@ -2169,7 +2169,8 @@ null or (luaInline)</p>
</span>
</dt>
<dd>
<p>Vim command string instead of a Lua function.</p>
<p>Vim command to be executed when the event(s) are triggered.
Cannot be defined if the <code class="literal">callback</code> option is already defined.</p>
<p><span class="emphasis"><em>Type:</em></span>
null or string</p>
@ -2301,7 +2302,7 @@ boolean</p>
</span>
</dt>
<dd>
<p>Whether autocommand run only once.</p>
<p>Whether to run the autocommand only once.</p>
<p><span class="emphasis"><em>Type:</em></span>
boolean</p>
@ -2325,7 +2326,7 @@ boolean</p>
</span>
</dt>
<dd>
<p>The file pattern(s) that determine when the autocommand applies).</p>
<p>The file pattern(s) that determine when the autocommand applies.</p>
<p><span class="emphasis"><em>Type:</em></span>
null or (list of string)</p>