comparison runtime/doc/syntax.txt @ 19574:d4deb2e50667

Update runtime files Commit: https://github.com/vim/vim/commit/eab6dff19f387469a200011bc6cf3508f5e43a4a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 1 19:06:45 2020 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Mar 2020 19:15:04 +0100
parents 63beef1ca62c
children 68c206d3a251
comparison
equal deleted inserted replaced
19573:9d0db06b6ad2 19574:d4deb2e50667
1 *syntax.txt* For Vim version 8.2. Last change: 2019 Dec 19 1 *syntax.txt* For Vim version 8.2. Last change: 2020 Feb 29
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
215 215
216 The name for a highlight or syntax group must consist of ASCII letters, digits 216 The name for a highlight or syntax group must consist of ASCII letters, digits
217 and the underscore. As a regexp: "[a-zA-Z0-9_]*". However, Vim does not give 217 and the underscore. As a regexp: "[a-zA-Z0-9_]*". However, Vim does not give
218 an error when using other characters. 218 an error when using other characters.
219 219
220 To be able to allow each user to pick his favorite set of colors, there must 220 To be able to allow each user to pick their favorite set of colors, there must
221 be preferred names for highlight groups that are common for many languages. 221 be preferred names for highlight groups that are common for many languages.
222 These are the suggested group names (if syntax highlighting works properly 222 These are the suggested group names (if syntax highlighting works properly
223 you can see the actual color, except for "Ignore"): 223 you can see the actual color, except for "Ignore"):
224 224
225 *Comment any comment 225 *Comment any comment
4510 When {file-name} is an absolute path (starts with "/", "c:", "$VAR" 4510 When {file-name} is an absolute path (starts with "/", "c:", "$VAR"
4511 or "<sfile>") that file is sourced. When it is a relative path 4511 or "<sfile>") that file is sourced. When it is a relative path
4512 (e.g., "syntax/pod.vim") the file is searched for in 'runtimepath'. 4512 (e.g., "syntax/pod.vim") the file is searched for in 'runtimepath'.
4513 All matching files are loaded. Using a relative path is 4513 All matching files are loaded. Using a relative path is
4514 recommended, because it allows a user to replace the included file 4514 recommended, because it allows a user to replace the included file
4515 with his own version, without replacing the file that does the ":syn 4515 with their own version, without replacing the file that does the
4516 include". 4516 ":syn include".
4517 4517
4518 *E847* 4518 *E847*
4519 The maximum number of includes is 999. 4519 The maximum number of includes is 999.
4520 4520
4521 ============================================================================== 4521 ==============================================================================