Skip to content

Commit 7a63d19

Browse files
committed
{filetype,map,syntax}.txt: Update Vim 8.2.4812
1 parent c585344 commit 7a63d19

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

en/filetype.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*filetype.txt* For Vim version 8.2. Last change: 2022 Apr 07
1+
*filetype.txt* For Vim version 8.2. Last change: 2022 Apr 09
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -155,6 +155,7 @@ variables can be used to overrule the filetype used for certain extensions:
155155
*.pp g:filetype_pp |ft-pascal-syntax|
156156
*.prg g:filetype_prg
157157
*.src g:filetype_src
158+
*.sys g:filetype_sys
158159
*.sh g:bash_is_sh |ft-sh-syntax|
159160
*.tex g:tex_flavor |ft-tex-plugin|
160161
*.w g:filetype_w |ft-cweb-syntax|

en/map.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*map.txt* For Vim version 8.2. Last change: 2022 Apr 03
1+
*map.txt* For Vim version 8.2. Last change: 2022 Apr 14
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1324,7 +1324,8 @@ underscore. Example: >
13241324
could define a mapping "<SNR>23_Add".
13251325

13261326
When defining a function in a script, "s:" can be prepended to the name to
1327-
make it local to the script. But when a mapping is executed from outside of
1327+
make it local to the script (in |Vim9| script functions without a prefix are
1328+
local to the script). But when a mapping is executed from outside of
13281329
the script, it doesn't know in which script the function was defined. To
13291330
avoid this problem, use "<SID>" instead of "s:". The same translation is done
13301331
as for mappings. This makes it possible to define a call to the function in

en/syntax.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ A syntax group name doesn't specify any color or attributes itself.
215215

216216
The name for a highlight or syntax group must consist of ASCII letters, digits
217217
and the underscore. As a regexp: "[a-zA-Z0-9_]*". However, Vim does not give
218-
an error when using other characters. The maxium length of a group name is
218+
an error when using other characters. The maximum length of a group name is
219219
about 200 bytes. *E1249*
220220

221221
To be able to allow each user to pick their favorite set of colors, there must

0 commit comments

Comments
 (0)