Skip to content

Commit

Permalink
Generated by GitHub workflow 12504003044
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 26, 2024
1 parent fa5cc46 commit 2a30dca
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
8 changes: 7 additions & 1 deletion develop.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
helpname: 'develop'
---
<div id='vimCodeElement'>
<a class="Constant" href="develop.html" name="develop.txt">develop.txt</a>&nbsp;&nbsp; For&nbsp;<span class="Identifier">Vim version 9.1.</span>&nbsp;&nbsp;Last change: 2024 Nov 11<br>
<a class="Constant" href="develop.html" name="develop.txt">develop.txt</a>&nbsp;&nbsp; For&nbsp;<span class="Identifier">Vim version 9.1.</span>&nbsp;&nbsp;Last change: 2024 Dec 25<br>
<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="Identifier">VIM REFERENCE MANUAL&nbsp;&nbsp;&nbsp;&nbsp;by Bram Moolenaar</span><br>
Expand Down Expand Up @@ -196,6 +196,12 @@
For any non-trivial change, please always create a pull request on github,<br>
since this triggers the test suite.<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class="Constant" href="develop.html#style-clang-format" name="style-clang-format">style-clang-format</a><br>
sound.c and sign.c can be (semi-) automatically formated using the<br>
<span class="Comment">clang-format</span>&nbsp;formatter according to the distributed .clang-format file.<br>
Other source files do not yet correspond to the .clang-format file.&nbsp;&nbsp;This may<br>
change in the future and they may be reformatted as well.<br>
<br>
<br>
<span class="Statement">C COMPILER&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><a class="Constant" href="develop.html#style-compiler" name="style-compiler">style-compiler</a>&nbsp;<a class="Constant" href="develop.html#ANSI-C" name="ANSI-C">ANSI-C</a>&nbsp;<a class="Constant" href="develop.html#C89" name="C89">C89</a>&nbsp;<a class="Constant" href="develop.html#C99" name="C99">C99</a><br>
<br>
Expand Down
37 changes: 15 additions & 22 deletions helphelp.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
helpname: 'helphelp'
---
<div id='vimCodeElement'>
<a class="Constant" href="helphelp.html" name="helphelp.txt">helphelp.txt</a>&nbsp;&nbsp;For&nbsp;<span class="Identifier">Vim version 9.1.</span>&nbsp;&nbsp;Last change: 2024 Dec 25<br>
<a class="Constant" href="helphelp.html" name="helphelp.txt">helphelp.txt</a>&nbsp;&nbsp;For&nbsp;<span class="Identifier">Vim version 9.1.</span>&nbsp;&nbsp;Last change: 2024 Dec 26<br>
<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="Identifier">VIM REFERENCE MANUAL&nbsp;&nbsp;&nbsp;&nbsp;by Bram Moolenaar</span><br>
Expand Down Expand Up @@ -442,31 +442,24 @@
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo &quot;Example&quot;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;endfunction</div>
<br>
<br>
To add annotation in the block, place the annotation (ex: &quot;lua&quot;) after a<br>
greater than (&gt;) character.&nbsp;&nbsp;E.g: &gt;lua<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print(&quot;hello&quot;)<br>
&lt;<br>
<span class="Todo">Note</span>: uses lua syntax highlighting, if &quot;lua&quot; key is in<br>
<a class="Identifier" href="helphelp.html#g:help_example_languages">g:help_example_languages</a>.<br>
<br>
It's possible to add Vim syntax highlighting support to code examples.<br>
E.g: &gt;vim<br>
To enable syntax highlighting for a block of code, place a language name<br>
annotation (e.g. &quot;vim&quot;) after a greater than (&gt;) character.&nbsp;&nbsp;E.g. &gt;vim<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;function Example_Func()<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo &quot;Example&quot;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;endfunction<br>
&lt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class="Constant" href="helphelp.html#g:help_example_languages" name="g:help_example_languages">g:help_example_languages</a><br>
If you want to change the syntax highlighting in the block, you can<br>
change it like this:<br>
<div class="helpExample">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:let g:help_example_languages = #{ vim&#0058; 'vim', sh: 'bash' }</div>
By default, help files only support Vim script highlighting.&nbsp;&nbsp;If you need<br>
syntax highlighting for other languages, add to your&nbsp;<a class="Identifier" href="starting.html#vimrc">vimrc</a>:<br>
<div class="helpExample">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:let g:help_example_languages = { &quot;vim&quot;: &quot;vim&quot;, &quot;sh&quot;: &quot;bash&quot; }</div>
The key represents the annotation marker name, and the value is the&nbsp;<a class="Type" href="options.html#'syntax'">'syntax'</a><br>
name.&nbsp;&nbsp;By default, help files support only Vim script highlighting.<br>
<span class="Todo">Note</span>: When setting &quot;g:help_example_languages&quot;, if you do not include &quot;vim&quot;<br>
key, the Vim syntax highlighting will not be enabled. If you set it to an<br>
name.<br>
<br>
<span class="Todo">Note</span>: If you do not include &quot;vim&quot; in &quot;g:help_example_languages&quot;, its syntax<br>
highlighting will not be enabled.&nbsp;&nbsp;If you set &quot;g:help_example_languages&quot; to an<br>
empty value, syntax highlighting for embedded languages will be disabled.<br>
<br>
Further&nbsp;<span class="Todo">note</span>: including additional syntax languages into help files may not<br>
Further&nbsp;<span class="Todo">note</span>: Including arbitrary syntax languages into help files may not<br>
always work perfectly, if the included&nbsp;<a class="Type" href="options.html#'syntax'">'syntax'</a>&nbsp;script does not account for<br>
such an import.<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class="Constant" href="helphelp.html#help-notation" name="help-notation">help-notation</a><br>
Expand All @@ -486,15 +479,15 @@
GENDER NEUTRAL LANGUAGE<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class="Constant" href="helphelp.html#gender-neutral" name="gender-neutral">gender-neutral</a>&nbsp;<a class="Constant" href="helphelp.html#inclusion" name="inclusion">inclusion</a><br>
Vim is for everybody, no matter race, gender or anything. For new or updated<br>
help text, gender neutral language is recommended. Some of the help text is<br>
many years old and there is no need to change it. We do not make any<br>
Vim is for everybody, no matter race, gender or anything.&nbsp;&nbsp;For new or updated<br>
help text, gender neutral language is recommended.&nbsp;&nbsp;Some of the help text is<br>
many years old and there is no need to change it.&nbsp;&nbsp;We do not make any<br>
assumptions about the gender of the user, no matter how the text is phrased.<br>
The goal is that the reader understands how Vim works, the exact wording is<br>
secondary.<br>
<br>
Many online technical style guides include sections about gender neutral<br>
language. Here are a few:<br>
language.&nbsp;&nbsp;Here are a few:<br>
<br>
<div class="helpExample">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://developers.google.com/style/pronouns">https://developers.google.com/style/pronouns</a><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://techwhirl.com/gender-neutral-technical-writing/">https://techwhirl.com/gender-neutral-technical-writing/</a><br>
Expand Down
1 change: 1 addition & 0 deletions tags.html
Original file line number Diff line number Diff line change
Expand Up @@ -10739,6 +10739,7 @@
<a class="Identifier" href="builtin.html#strwidth()">strwidth()</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;builtin.txt<br>
<a class="Identifier" href="develop.html#style-braces">style-braces</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;develop.txt<br>
<a class="Identifier" href="develop.html#style-changes">style-changes</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; develop.txt<br>
<a class="Identifier" href="develop.html#style-clang-format">style-clang-format</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;develop.txt<br>
<a class="Identifier" href="develop.html#style-comments">style-comments</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;develop.txt<br>
<a class="Identifier" href="develop.html#style-common-functions">style-common-functions</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;develop.txt<br>
<a class="Identifier" href="develop.html#style-compiler">style-compiler</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;develop.txt<br>
Expand Down

0 comments on commit 2a30dca

Please sign in to comment.