Install vim73
[msysgit/mtrensch.git] / share / vim / vim73 / doc / syntax.txt
blob267ec5bd27992861db090c6240f2f6f664b01183
1 *syntax.txt*    For Vim version 7.3.  Last change: 2010 Aug 10
4                   VIM REFERENCE MANUAL    by Bram Moolenaar
7 Syntax highlighting             *syntax* *syntax-highlighting* *coloring*
9 Syntax highlighting enables Vim to show parts of the text in another font or
10 color.  Those parts can be specific keywords or text matching a pattern.  Vim
11 doesn't parse the whole file (to keep it fast), so the highlighting has its
12 limitations.  Lexical highlighting might be a better name, but since everybody
13 calls it syntax highlighting we'll stick with that.
15 Vim supports syntax highlighting on all terminals.  But since most ordinary
16 terminals have very limited highlighting possibilities, it works best in the
17 GUI version, gvim.
19 In the User Manual:
20 |usr_06.txt| introduces syntax highlighting.
21 |usr_44.txt| introduces writing a syntax file.
23 1.  Quick start                 |:syn-qstart|
24 2.  Syntax files                |:syn-files|
25 3.  Syntax loading procedure    |syntax-loading|
26 4.  Syntax file remarks         |:syn-file-remarks|
27 5.  Defining a syntax           |:syn-define|
28 6.  :syntax arguments           |:syn-arguments|
29 7.  Syntax patterns             |:syn-pattern|
30 8.  Syntax clusters             |:syn-cluster|
31 9.  Including syntax files      |:syn-include|
32 10. Synchronizing               |:syn-sync|
33 11. Listing syntax items        |:syntax|
34 12. Highlight command           |:highlight|
35 13. Linking groups              |:highlight-link|
36 14. Cleaning up                 |:syn-clear|
37 15. Highlighting tags           |tag-highlight|
38 16. Window-local syntax         |:ownsyntax|
39 17. Color xterms                |xterm-color|
41 {Vi does not have any of these commands}
43 Syntax highlighting is not available when the |+syntax| feature has been
44 disabled at compile time.
46 ==============================================================================
47 1. Quick start                                          *:syn-qstart*
49                                                 *:syn-enable* *:syntax-enable*
50 This command switches on syntax highlighting: >
52         :syntax enable
54 What this command actually does is to execute the command >
55         :source $VIMRUNTIME/syntax/syntax.vim
57 If the VIM environment variable is not set, Vim will try to find
58 the path in another way (see |$VIMRUNTIME|).  Usually this works just
59 fine.  If it doesn't, try setting the VIM environment variable to the
60 directory where the Vim stuff is located.  For example, if your syntax files
61 are in the "/usr/vim/vim50/syntax" directory, set $VIMRUNTIME to
62 "/usr/vim/vim50".  You must do this in the shell, before starting Vim.
64                                                         *:syn-on* *:syntax-on*
65 The ":syntax enable" command will keep your current color settings.  This
66 allows using ":highlight" commands to set your preferred colors before or
67 after using this command.  If you want Vim to overrule your settings with the
68 defaults, use: >
69         :syntax on
71                                         *:hi-normal* *:highlight-normal*
72 If you are running in the GUI, you can get white text on a black background
73 with: >
74         :highlight Normal guibg=Black guifg=White
75 For a color terminal see |:hi-normal-cterm|.
76 For setting up your own colors syntax highlighting see |syncolor|.
78 NOTE: The syntax files on MS-DOS and Windows have lines that end in <CR><NL>.
79 The files for Unix end in <NL>.  This means you should use the right type of
80 file for your system.  Although on MS-DOS and Windows the right format is
81 automatically selected if the 'fileformats' option is not empty.
83 NOTE: When using reverse video ("gvim -fg white -bg black"), the default value
84 of 'background' will not be set until the GUI window is opened, which is after
85 reading the |gvimrc|.  This will cause the wrong default highlighting to be
86 used.  To set the default value of 'background' before switching on
87 highlighting, include the ":gui" command in the |gvimrc|: >
89    :gui         " open window and set default for 'background'
90    :syntax on   " start highlighting, use 'background' to set colors
92 NOTE: Using ":gui" in the |gvimrc| means that "gvim -f" won't start in the
93 foreground!  Use ":gui -f" then.
95                                                         *g:syntax_on*
96 You can toggle the syntax on/off with this command: >
97    :if exists("g:syntax_on") | syntax off | else | syntax enable | endif
99 To put this into a mapping, you can use: >
100    :map <F7> :if exists("g:syntax_on") <Bar>
101         \   syntax off <Bar>
102         \ else <Bar>
103         \   syntax enable <Bar>
104         \ endif <CR>
105 [using the |<>| notation, type this literally]
107 Details:
108 The ":syntax" commands are implemented by sourcing a file.  To see exactly how
109 this works, look in the file:
110     command             file ~
111     :syntax enable      $VIMRUNTIME/syntax/syntax.vim
112     :syntax on          $VIMRUNTIME/syntax/syntax.vim
113     :syntax manual      $VIMRUNTIME/syntax/manual.vim
114     :syntax off         $VIMRUNTIME/syntax/nosyntax.vim
115 Also see |syntax-loading|.
117 NOTE: If displaying long lines is slow and switching off syntax highlighting
118 makes it fast, consider setting the 'synmaxcol' option to a lower value.
120 ==============================================================================
121 2. Syntax files                                         *:syn-files*
123 The syntax and highlighting commands for one language are normally stored in
124 a syntax file.  The name convention is: "{name}.vim".  Where {name} is the
125 name of the language, or an abbreviation (to fit the name in 8.3 characters,
126 a requirement in case the file is used on a DOS filesystem).
127 Examples:
128         c.vim           perl.vim        java.vim        html.vim
129         cpp.vim         sh.vim          csh.vim
131 The syntax file can contain any Ex commands, just like a vimrc file.  But
132 the idea is that only commands for a specific language are included.  When a
133 language is a superset of another language, it may include the other one,
134 for example, the cpp.vim file could include the c.vim file: >
135    :so $VIMRUNTIME/syntax/c.vim
137 The .vim files are normally loaded with an autocommand.  For example: >
138    :au Syntax c     runtime! syntax/c.vim
139    :au Syntax cpp   runtime! syntax/cpp.vim
140 These commands are normally in the file $VIMRUNTIME/syntax/synload.vim.
143 MAKING YOUR OWN SYNTAX FILES                            *mysyntaxfile*
145 When you create your own syntax files, and you want to have Vim use these
146 automatically with ":syntax enable", do this:
148 1. Create your user runtime directory.  You would normally use the first item
149    of the 'runtimepath' option.  Example for Unix: >
150         mkdir ~/.vim
152 2. Create a directory in there called "syntax".  For Unix: >
153         mkdir ~/.vim/syntax
155 3. Write the Vim syntax file.  Or download one from the internet.  Then write
156    it in your syntax directory.  For example, for the "mine" syntax: >
157         :w ~/.vim/syntax/mine.vim
159 Now you can start using your syntax file manually: >
160         :set syntax=mine
161 You don't have to exit Vim to use this.
163 If you also want Vim to detect the type of file, see |new-filetype|.
165 If you are setting up a system with many users and you don't want each user
166 to add the same syntax file, you can use another directory from 'runtimepath'.
169 ADDING TO AN EXISTING SYNTAX FILE               *mysyntaxfile-add*
171 If you are mostly satisfied with an existing syntax file, but would like to
172 add a few items or change the highlighting, follow these steps:
174 1. Create your user directory from 'runtimepath', see above.
176 2. Create a directory in there called "after/syntax".  For Unix: >
177         mkdir ~/.vim/after
178         mkdir ~/.vim/after/syntax
180 3. Write a Vim script that contains the commands you want to use.  For
181    example, to change the colors for the C syntax: >
182         highlight cComment ctermfg=Green guifg=Green
184 4. Write that file in the "after/syntax" directory.  Use the name of the
185    syntax, with ".vim" added.  For our C syntax: >
186         :w ~/.vim/after/syntax/c.vim
188 That's it.  The next time you edit a C file the Comment color will be
189 different.  You don't even have to restart Vim.
191 If you have multiple files, you can use the filetype as the directory name.
192 All the "*.vim" files in this directory will be used, for example:
193         ~/.vim/after/syntax/c/one.vim
194         ~/.vim/after/syntax/c/two.vim
197 REPLACING AN EXISTING SYNTAX FILE                       *mysyntaxfile-replace*
199 If you don't like a distributed syntax file, or you have downloaded a new
200 version, follow the same steps as for |mysyntaxfile| above.  Just make sure
201 that you write the syntax file in a directory that is early in 'runtimepath'.
202 Vim will only load the first syntax file found.
205 NAMING CONVENTIONS                  *group-name* *{group-name}* *E669* *W18*
207 A syntax group name is to be used for syntax items that match the same kind of
208 thing.  These are then linked to a highlight group that specifies the color.
209 A syntax group name doesn't specify any color or attributes itself.
211 The name for a highlight or syntax group must consist of ASCII letters, digits
212 and the underscore.  As a regexp: "[a-zA-Z0-9_]*"
214 To be able to allow each user to pick his favorite set of colors, there must
215 be preferred names for highlight groups that are common for many languages.
216 These are the suggested group names (if syntax highlighting works properly
217 you can see the actual color, except for "Ignore"):
219         *Comment        any comment
221         *Constant       any constant
222          String         a string constant: "this is a string"
223          Character      a character constant: 'c', '\n'
224          Number         a number constant: 234, 0xff
225          Boolean        a boolean constant: TRUE, false
226          Float          a floating point constant: 2.3e10
228         *Identifier     any variable name
229          Function       function name (also: methods for classes)
231         *Statement      any statement
232          Conditional    if, then, else, endif, switch, etc.
233          Repeat         for, do, while, etc.
234          Label          case, default, etc.
235          Operator       "sizeof", "+", "*", etc.
236          Keyword        any other keyword
237          Exception      try, catch, throw
239         *PreProc        generic Preprocessor
240          Include        preprocessor #include
241          Define         preprocessor #define
242          Macro          same as Define
243          PreCondit      preprocessor #if, #else, #endif, etc.
245         *Type           int, long, char, etc.
246          StorageClass   static, register, volatile, etc.
247          Structure      struct, union, enum, etc.
248          Typedef        A typedef
250         *Special        any special symbol
251          SpecialChar    special character in a constant
252          Tag            you can use CTRL-] on this
253          Delimiter      character that needs attention
254          SpecialComment special things inside a comment
255          Debug          debugging statements
257         *Underlined     text that stands out, HTML links
259         *Ignore         left blank, hidden  |hl-Ignore|
261         *Error          any erroneous construct
263         *Todo           anything that needs extra attention; mostly the
264                         keywords TODO FIXME and XXX
266 The names marked with * are the preferred groups; the others are minor groups.
267 For the preferred groups, the "syntax.vim" file contains default highlighting.
268 The minor groups are linked to the preferred groups, so they get the same
269 highlighting.  You can override these defaults by using ":highlight" commands
270 after sourcing the "syntax.vim" file.
272 Note that highlight group names are not case sensitive.  "String" and "string"
273 can be used for the same group.
275 The following names are reserved and cannot be used as a group name:
276         NONE   ALL   ALLBUT   contains   contained
278                                                         *hl-Ignore*
279 When using the Ignore group, you may also consider using the conceal
280 mechanism.  See |conceal|.
282 ==============================================================================
283 3. Syntax loading procedure                             *syntax-loading*
285 This explains the details that happen when the command ":syntax enable" is
286 issued.  When Vim initializes itself, it finds out where the runtime files are
287 located.  This is used here as the variable |$VIMRUNTIME|.
289 ":syntax enable" and ":syntax on" do the following:
291     Source $VIMRUNTIME/syntax/syntax.vim
292     |
293     +-  Clear out any old syntax by sourcing $VIMRUNTIME/syntax/nosyntax.vim
294     |
295     +-  Source first syntax/synload.vim in 'runtimepath'
296     |   |
297     |   +-  Setup the colors for syntax highlighting.  If a color scheme is
298     |   |   defined it is loaded again with ":colors {name}".  Otherwise
299     |   |   ":runtime! syntax/syncolor.vim" is used.  ":syntax on" overrules
300     |   |   existing colors, ":syntax enable" only sets groups that weren't
301     |   |   set yet.
302     |   |
303     |   +-  Set up syntax autocmds to load the appropriate syntax file when
304     |   |   the 'syntax' option is set. *synload-1*
305     |   |
306     |   +-  Source the user's optional file, from the |mysyntaxfile| variable.
307     |       This is for backwards compatibility with Vim 5.x only. *synload-2*
308     |
309     +-  Do ":filetype on", which does ":runtime! filetype.vim".  It loads any
310     |   filetype.vim files found.  It should always Source
311     |   $VIMRUNTIME/filetype.vim, which does the following.
312     |   |
313     |   +-  Install autocmds based on suffix to set the 'filetype' option
314     |   |   This is where the connection between file name and file type is
315     |   |   made for known file types. *synload-3*
316     |   |
317     |   +-  Source the user's optional file, from the *myfiletypefile*
318     |   |   variable.  This is for backwards compatibility with Vim 5.x only.
319     |   |   *synload-4*
320     |   |
321     |   +-  Install one autocommand which sources scripts.vim when no file
322     |   |   type was detected yet. *synload-5*
323     |   |
324     |   +-  Source $VIMRUNTIME/menu.vim, to setup the Syntax menu. |menu.vim|
325     |
326     +-  Install a FileType autocommand to set the 'syntax' option when a file
327     |   type has been detected. *synload-6*
328     |
329     +-  Execute syntax autocommands to start syntax highlighting for each
330         already loaded buffer.
333 Upon loading a file, Vim finds the relevant syntax file as follows:
335     Loading the file triggers the BufReadPost autocommands.
336     |
337     +-  If there is a match with one of the autocommands from |synload-3|
338     |   (known file types) or |synload-4| (user's file types), the 'filetype'
339     |   option is set to the file type.
340     |
341     +-  The autocommand at |synload-5| is triggered.  If the file type was not
342     |   found yet, then scripts.vim is searched for in 'runtimepath'.  This
343     |   should always load $VIMRUNTIME/scripts.vim, which does the following.
344     |   |
345     |   +-  Source the user's optional file, from the *myscriptsfile*
346     |   |   variable.  This is for backwards compatibility with Vim 5.x only.
347     |   |
348     |   +-  If the file type is still unknown, check the contents of the file,
349     |       again with checks like "getline(1) =~ pattern" as to whether the
350     |       file type can be recognized, and set 'filetype'.
351     |
352     +-  When the file type was determined and 'filetype' was set, this
353     |   triggers the FileType autocommand |synload-6| above.  It sets
354     |   'syntax' to the determined file type.
355     |
356     +-  When the 'syntax' option was set above, this triggers an autocommand
357     |   from |synload-1| (and |synload-2|).  This find the main syntax file in
358     |   'runtimepath', with this command:
359     |           runtime! syntax/<name>.vim
360     |
361     +-  Any other user installed FileType or Syntax autocommands are
362         triggered.  This can be used to change the highlighting for a specific
363         syntax.
365 ==============================================================================
366 4. Syntax file remarks                                  *:syn-file-remarks*
368                                                 *b:current_syntax-variable*
369 Vim stores the name of the syntax that has been loaded in the
370 "b:current_syntax" variable.  You can use this if you want to load other
371 settings, depending on which syntax is active.  Example: >
372    :au BufReadPost * if b:current_syntax == "csh"
373    :au BufReadPost *   do-some-things
374    :au BufReadPost * endif
377 2HTML                                           *2html.vim* *convert-to-HTML*
379 This is not a syntax file itself, but a script that converts the current
380 window into HTML.  Vim opens a new window in which it builds the HTML file.
382 You are not supposed to set the 'filetype' or 'syntax' option to "2html"!
383 Source the script to convert the current file: >
385         :runtime! syntax/2html.vim
387                                                         *:TOhtml*
388 Or use the ":TOhtml" user command.  It is defined in a standard plugin.
389 ":TOhtml" also works with a range and in a Visual area: >
391         :10,40TOhtml
393 Warning: This is slow! The script must process every character of every line.
394 Because it is so slow, by default a progress bar is displayed in the
395 statusline for each step that usually takes a long time. If you don't like
396 seeing this progress bar, you can disable it and get a very minor speed
397 improvement with: >
399         let g:html_no_progress = 1
401 ":TOhtml" has another special feature: if the window is in diff mode, it will
402 generate HTML that shows all the related windows.  This can be disabled by
403 setting the g:html_diff_one_file variable: >
405         let g:html_diff_one_file = 1
407 After you save the resulting file, you can view it with any browser.  The
408 colors should be exactly the same as you see them in Vim.
410 To restrict the conversion to a range of lines, use a range with the |:TOhtml|
411 command, or set "g:html_start_line" and "g:html_end_line" to the first and
412 last line to be converted.  Example, using the last set Visual area: >
414         :let g:html_start_line = line("'<")
415         :let g:html_end_line = line("'>")
417 The lines are numbered according to 'number' option and the Number
418 highlighting.  You can force lines to be numbered in the HTML output by
419 setting "html_number_lines" to non-zero value: >
420    :let g:html_number_lines = 1
421 Force to omit the line numbers by using a zero value: >
422    :let g:html_number_lines = 0
423 Go back to the default to use 'number' by deleting the variable: >
424    :unlet g:html_number_lines
426 By default, valid HTML 4.01 using cascading style sheets (CSS1) is generated.
427 If you need to generate markup for really old browsers or some other user
428 agent that lacks basic CSS support, use: >
429    :let g:html_use_css = 0
431 Concealed text is removed from the HTML and replaced with the appropriate
432 character from |:syn-cchar| or 'listchars' depending on the current value of
433 'conceallevel'. If you always want to display all text in your document,
434 either set 'conceallevel' to zero before invoking 2html, or use: >
435    :let g:html_ignore_conceal = 1
437 Similarly, closed folds are put in the HTML as they are displayed.  If you
438 don't want this, use the |zR| command before invoking 2html, or use: >
439    :let g:html_ignore_folding = 1
441 You may want to generate HTML that includes all the data within the folds, and
442 allow the user to view the folded data similar to how they would in Vim. To
443 generate this dynamic fold information, use: >
444    :let g:html_dynamic_folds = 1
446 Using html_dynamic_folds will imply html_use_css, because it would be far too
447 difficult to do it for old browsers. However, html_ignore_folding overrides
448 html_dynamic_folds.
450 Using html_dynamic_folds will default to generating a foldcolumn in the html
451 similar to Vim's foldcolumn, that will use javascript to open and close the
452 folds in the HTML document. The width of this foldcolumn starts at the current
453 setting of |'foldcolumn'| but grows to fit the greatest foldlevel in your
454 document. If you do not want to show a foldcolumn at all, use: >
455    :let g:html_no_foldcolumn = 1
457 Using this option, there will be no foldcolumn available to open the folds in
458 the HTML. For this reason, another option is provided: html_hover_unfold.
459 Enabling this option will use CSS 2.0 to allow a user to open a fold by
460 hovering the mouse pointer over it. Note that old browsers (notably Internet
461 Explorer 6) will not support this feature.  Browser-specific markup for IE6 is
462 included to fall back to the normal CSS1 code so that the folds show up
463 correctly for this browser, but they will not be openable without a
464 foldcolumn. Note that using html_hover_unfold will allow modern browsers with
465 disabled javascript to view closed folds. To use this option, use: >
466    :let g:html_hover_unfold = 1
468 Setting html_no_foldcolumn with html_dynamic_folds will automatically set
469 html_hover_unfold, because otherwise the folds wouldn't be dynamic.
471 By default "<pre>" and "</pre>" is used around the text.  This makes it show
472 up as you see it in Vim, but without wrapping.  If you prefer wrapping, at the
473 risk of making some things look a bit different, use: >
474    :let g:html_no_pre = 1
475 This will use <br> at the end of each line and use "&nbsp;" for repeated
476 spaces.
478 The current value of 'encoding' is used to specify the charset of the HTML
479 file.  This only works for those values of 'encoding' that have an equivalent
480 HTML charset name.  To overrule this set g:html_use_encoding to the name of
481 the charset to be used: >
482    :let g:html_use_encoding = "foobar"
483 To omit the line that specifies the charset, set g:html_use_encoding to an
484 empty string: >
485    :let g:html_use_encoding = ""
486 To go back to the automatic mechanism, delete the g:html_use_encoding
487 variable: >
488    :unlet g:html_use_encoding
490 For diff mode a sequence of more than 3 filler lines is displayed as three
491 lines with the middle line mentioning the total number of inserted lines.  If
492 you prefer to see all the inserted lines use: >
493     :let g:html_whole_filler = 1
494 And to go back to displaying up to three lines again: >
495     :unlet g:html_whole_filler
497                                             *convert-to-XML* *convert-to-XHTML*
498 An alternative is to have the script generate XHTML (XML compliant HTML).  To
499 do this set the "html_use_xhtml" variable: >
500     :let g:html_use_xhtml = 1
502 Any of these options can be enabled or disabled by setting them explicitly to
503 the desired value, or restored to their default by removing the variable using
504 |:unlet|.
506 Remarks:
507 - This only works in a version with GUI support.  If the GUI is not actually
508   running (possible for X11) it still works, but not very well (the colors
509   may be wrong).
510 - Some truly ancient browsers may not show the background colors.
511 - From most browsers you can also print the file (in color)!
513 Here is an example how to run the script over all .c and .h files from a
514 Unix shell: >
515    for f in *.[ch]; do gvim -f +"syn on" +"run! syntax/2html.vim" +"wq" +"q" $f; done
518 ABEL                                            *abel.vim* *ft-abel-syntax*
520 ABEL highlighting provides some user-defined options.  To enable them, assign
521 any value to the respective variable.  Example: >
522         :let abel_obsolete_ok=1
523 To disable them use ":unlet".  Example: >
524         :unlet abel_obsolete_ok
526 Variable                        Highlight ~
527 abel_obsolete_ok                obsolete keywords are statements, not errors
528 abel_cpp_comments_illegal       do not interpret '//' as inline comment leader
533 See |ft-ada-syntax|
536 ANT                                             *ant.vim* *ft-ant-syntax*
538 The ant syntax file provides syntax highlighting for javascript and python
539 by default.  Syntax highlighting for other script languages can be installed
540 by the function AntSyntaxScript(), which takes the tag name as first argument
541 and the script syntax file name as second argument.  Example: >
543         :call AntSyntaxScript('perl', 'perl.vim')
545 will install syntax perl highlighting for the following ant code >
547         <script language = 'perl'><![CDATA[
548             # everything inside is highlighted as perl
549         ]]></script>
551 See |mysyntaxfile-add| for installing script languages permanently.
554 APACHE                                          *apache.vim* *ft-apache-syntax*
556 The apache syntax file provides syntax highlighting depending on Apache HTTP
557 server version, by default for 1.3.x.  Set "apache_version" to Apache version
558 (as a string) to get highlighting for another version.  Example: >
560         :let apache_version = "2.0"
563                 *asm.vim* *asmh8300.vim* *nasm.vim* *masm.vim* *asm68k*
564 ASSEMBLY        *ft-asm-syntax* *ft-asmh8300-syntax* *ft-nasm-syntax*
565                 *ft-masm-syntax* *ft-asm68k-syntax* *fasm.vim*
567 Files matching "*.i" could be Progress or Assembly.  If the automatic detection
568 doesn't work for you, or you don't edit Progress at all, use this in your
569 startup vimrc: >
570    :let filetype_i = "asm"
571 Replace "asm" with the type of assembly you use.
573 There are many types of assembly languages that all use the same file name
574 extensions.  Therefore you will have to select the type yourself, or add a
575 line in the assembly file that Vim will recognize.  Currently these syntax
576 files are included:
577         asm             GNU assembly (the default)
578         asm68k          Motorola 680x0 assembly
579         asmh8300        Hitachi H-8300 version of GNU assembly
580         ia64            Intel Itanium 64
581         fasm            Flat assembly (http://flatassembler.net)
582         masm            Microsoft assembly (probably works for any 80x86)
583         nasm            Netwide assembly
584         tasm            Turbo Assembly (with opcodes 80x86 up to Pentium, and
585                         MMX)
586         pic             PIC assembly (currently for PIC16F84)
588 The most flexible is to add a line in your assembly file containing: >
589         asmsyntax=nasm
590 Replace "nasm" with the name of the real assembly syntax.  This line must be
591 one of the first five lines in the file.  No non-white text must be
592 immediately before or after this text.
594 The syntax type can always be overruled for a specific buffer by setting the
595 b:asmsyntax variable: >
596         :let b:asmsyntax = "nasm"
598 If b:asmsyntax is not set, either automatically or by hand, then the value of
599 the global variable asmsyntax is used.  This can be seen as a default assembly
600 language: >
601         :let asmsyntax = "nasm"
603 As a last resort, if nothing is defined, the "asm" syntax is used.
606 Netwide assembler (nasm.vim) optional highlighting ~
608 To enable a feature: >
609         :let   {variable}=1|set syntax=nasm
610 To disable a feature: >
611         :unlet {variable}  |set syntax=nasm
613 Variable                Highlight ~
614 nasm_loose_syntax       unofficial parser allowed syntax not as Error
615                           (parser dependent; not recommended)
616 nasm_ctx_outside_macro  contexts outside macro not as Error
617 nasm_no_warn            potentially risky syntax not as ToDo
620 ASPPERL and ASPVBS                      *ft-aspperl-syntax* *ft-aspvbs-syntax*
622 *.asp and *.asa files could be either Perl or Visual Basic script.  Since it's
623 hard to detect this you can set two global variables to tell Vim what you are
624 using.  For Perl script use: >
625         :let g:filetype_asa = "aspperl"
626         :let g:filetype_asp = "aspperl"
627 For Visual Basic use: >
628         :let g:filetype_asa = "aspvbs"
629         :let g:filetype_asp = "aspvbs"
632 BAAN                                                *baan.vim* *baan-syntax*
634 The baan.vim gives syntax support for BaanC of release BaanIV upto SSA ERP LN
635 for both 3 GL and 4 GL programming. Large number of standard defines/constants
636 are supported.
638 Some special violation of coding standards will be signalled when one specify
639 in ones |.vimrc|: >
640         let baan_code_stds=1
642 *baan-folding*
644 Syntax folding can be enabled at various levels through the variables
645 mentioned below (Set those in your |.vimrc|). The more complex folding on
646 source blocks and SQL can be CPU intensive.
648 To allow any folding and enable folding at function level use: >
649         let baan_fold=1
650 Folding can be enabled at source block level as if, while, for ,... The
651 indentation preceding the begin/end keywords has to match (spaces are not
652 considered equal to a tab). >
653         let baan_fold_block=1
654 Folding can be enabled for embedded SQL blocks as SELECT, SELECTDO,
655 SELECTEMPTY, ... The indentation preceding the begin/end keywords has to
656 match (spaces are not considered equal to a tab). >
657         let baan_fold_sql=1
658 Note: Block folding can result in many small folds. It is suggested to |:set|
659 the options 'foldminlines' and 'foldnestmax' in |.vimrc| or use |:setlocal| in
660 .../after/syntax/baan.vim (see |after-directory|). Eg: >
661         set foldminlines=5
662         set foldnestmax=6
665 BASIC                   *basic.vim* *vb.vim* *ft-basic-syntax* *ft-vb-syntax*
667 Both Visual Basic and "normal" basic use the extension ".bas".  To detect
668 which one should be used, Vim checks for the string "VB_Name" in the first
669 five lines of the file.  If it is not found, filetype will be "basic",
670 otherwise "vb".  Files with the ".frm" extension will always be seen as Visual
671 Basic.
674 C                                                       *c.vim* *ft-c-syntax*
676 A few things in C highlighting are optional.  To enable them assign any value
677 to the respective variable.  Example: >
678         :let c_comment_strings = 1
679 To disable them use ":unlet".  Example: >
680         :unlet c_comment_strings
682 Variable                Highlight ~
683 c_gnu                   GNU gcc specific items
684 c_comment_strings       strings and numbers inside a comment
685 c_space_errors          trailing white space and spaces before a <Tab>
686 c_no_trail_space_error   ... but no trailing spaces
687 c_no_tab_space_error     ... but no spaces before a <Tab>
688 c_no_bracket_error      don't highlight {}; inside [] as errors
689 c_no_curly_error        don't highlight {}; inside [] and () as errors;
690                                 except { and } in first column
691 c_curly_error           highlight a missing }; this forces syncing from the
692                         start of the file, can be slow
693 c_no_ansi               don't do standard ANSI types and constants
694 c_ansi_typedefs          ... but do standard ANSI types
695 c_ansi_constants         ... but do standard ANSI constants
696 c_no_utf                don't highlight \u and \U in strings
697 c_syntax_for_h          use C syntax for *.h files, instead of C++
698 c_no_if0                don't highlight "#if 0" blocks as comments
699 c_no_cformat            don't highlight %-formats in strings
700 c_no_c99                don't highlight C99 standard items
702 When 'foldmethod' is set to "syntax" then /* */ comments and { } blocks will
703 become a fold.  If you don't want comments to become a fold use: >
704         :let c_no_comment_fold = 1
705 "#if 0" blocks are also folded, unless: >
706         :let c_no_if0_fold = 1
708 If you notice highlighting errors while scrolling backwards, which are fixed
709 when redrawing with CTRL-L, try setting the "c_minlines" internal variable
710 to a larger number: >
711         :let c_minlines = 100
712 This will make the syntax synchronization start 100 lines before the first
713 displayed line.  The default value is 50 (15 when c_no_if0 is set).  The
714 disadvantage of using a larger number is that redrawing can become slow.
716 When using the "#if 0" / "#endif" comment highlighting, notice that this only
717 works when the "#if 0" is within "c_minlines" from the top of the window.  If
718 you have a long "#if 0" construct it will not be highlighted correctly.
720 To match extra items in comments, use the cCommentGroup cluster.
721 Example: >
722    :au Syntax c call MyCadd()
723    :function MyCadd()
724    :  syn keyword cMyItem contained Ni
725    :  syn cluster cCommentGroup add=cMyItem
726    :  hi link cMyItem Title
727    :endfun
729 ANSI constants will be highlighted with the "cConstant" group.  This includes
730 "NULL", "SIG_IGN" and others.  But not "TRUE", for example, because this is
731 not in the ANSI standard.  If you find this confusing, remove the cConstant
732 highlighting: >
733         :hi link cConstant NONE
735 If you see '{' and '}' highlighted as an error where they are OK, reset the
736 highlighting for cErrInParen and cErrInBracket.
738 If you want to use folding in your C files, you can add these lines in a file
739 in the "after" directory in 'runtimepath'.  For Unix this would be
740 ~/.vim/after/syntax/c.vim. >
741     syn sync fromstart
742     set foldmethod=syntax
744 CH                                              *ch.vim* *ft-ch-syntax*
746 C/C++ interpreter.  Ch has similar syntax highlighting to C and builds upon
747 the C syntax file.  See |c.vim| for all the settings that are available for C.
749 By setting a variable you can tell Vim to use Ch syntax for *.h files, instead
750 of C or C++: >
751         :let ch_syntax_for_h = 1
754 CHILL                                           *chill.vim* *ft-chill-syntax*
756 Chill syntax highlighting is similar to C.  See |c.vim| for all the settings
757 that are available.  Additionally there is:
759 chill_space_errors      like c_space_errors
760 chill_comment_string    like c_comment_strings
761 chill_minlines          like c_minlines
764 CHANGELOG                               *changelog.vim* *ft-changelog-syntax*
766 ChangeLog supports highlighting spaces at the start of a line.
767 If you do not like this, add following line to your .vimrc: >
768         let g:changelog_spacing_errors = 0
769 This works the next time you edit a changelog file.  You can also use
770 "b:changelog_spacing_errors" to set this per buffer (before loading the syntax
771 file).
773 You can change the highlighting used, e.g., to flag the spaces as an error: >
774         :hi link ChangelogError Error
775 Or to avoid the highlighting: >
776         :hi link ChangelogError NONE
777 This works immediately.
780 COBOL                                           *cobol.vim* *ft-cobol-syntax*
782 COBOL highlighting has different needs for legacy code than it does for fresh
783 development.  This is due to differences in what is being done (maintenance
784 versus development) and other factors.  To enable legacy code highlighting,
785 add this line to your .vimrc: >
786         :let cobol_legacy_code = 1
787 To disable it again, use this: >
788         :unlet cobol_legacy_code
791 COLD FUSION                     *coldfusion.vim* *ft-coldfusion-syntax*
793 The ColdFusion has its own version of HTML comments.  To turn on ColdFusion
794 comment highlighting, add the following line to your startup file: >
796         :let html_wrong_comments = 1
798 The ColdFusion syntax file is based on the HTML syntax file.
801 CSH                                             *csh.vim* *ft-csh-syntax*
803 This covers the shell named "csh".  Note that on some systems tcsh is actually
804 used.
806 Detecting whether a file is csh or tcsh is notoriously hard.  Some systems
807 symlink /bin/csh to /bin/tcsh, making it almost impossible to distinguish
808 between csh and tcsh.  In case VIM guesses wrong you can set the
809 "filetype_csh" variable.  For using csh: >
811         :let filetype_csh = "csh"
813 For using tcsh: >
815         :let filetype_csh = "tcsh"
817 Any script with a tcsh extension or a standard tcsh filename (.tcshrc,
818 tcsh.tcshrc, tcsh.login) will have filetype tcsh.  All other tcsh/csh scripts
819 will be classified as tcsh, UNLESS the "filetype_csh" variable exists.  If the
820 "filetype_csh" variable exists, the filetype will be set to the value of the
821 variable.
824 CYNLIB                                          *cynlib.vim* *ft-cynlib-syntax*
826 Cynlib files are C++ files that use the Cynlib class library to enable
827 hardware modelling and simulation using C++.  Typically Cynlib files have a .cc
828 or a .cpp extension, which makes it very difficult to distinguish them from a
829 normal C++ file.  Thus, to enable Cynlib highlighting for .cc files, add this
830 line to your .vimrc file: >
832         :let cynlib_cyntax_for_cc=1
834 Similarly for cpp files (this extension is only usually used in Windows) >
836         :let cynlib_cyntax_for_cpp=1
838 To disable these again, use this: >
840         :unlet cynlib_cyntax_for_cc
841         :unlet cynlib_cyntax_for_cpp
844 CWEB                                            *cweb.vim* *ft-cweb-syntax*
846 Files matching "*.w" could be Progress or cweb.  If the automatic detection
847 doesn't work for you, or you don't edit Progress at all, use this in your
848 startup vimrc: >
849    :let filetype_w = "cweb"
852 DESKTOP                                    *desktop.vim* *ft-desktop-syntax*
854 Primary goal of this syntax file is to highlight .desktop and .directory files
855 according to freedesktop.org standard:
856 http://standards.freedesktop.org/desktop-entry-spec/latest/
857 But actually almost none implements this standard fully.  Thus it will
858 highlight all Unix ini files.  But you can force strict highlighting according
859 to standard by placing this in your vimrc file: >
860         :let enforce_freedesktop_standard = 1
863 DIRCOLORS                              *dircolors.vim* *ft-dircolors-syntax*
865 The dircolors utility highlighting definition has one option.  It exists to
866 provide compatibility with the Slackware GNU/Linux distributions version of
867 the command.  It adds a few keywords that are generally ignored by most
868 versions.  On Slackware systems, however, the utility accepts the keywords and
869 uses them for processing.  To enable the Slackware keywords add the following
870 line to your startup file: >
871         let dircolors_is_slackware = 1
874 DOCBOOK                                 *docbk.vim* *ft-docbk-syntax* *docbook*
875 DOCBOOK XML                             *docbkxml.vim* *ft-docbkxml-syntax*
876 DOCBOOK SGML                            *docbksgml.vim* *ft-docbksgml-syntax*
878 There are two types of DocBook files: SGML and XML.  To specify what type you
879 are using the "b:docbk_type" variable should be set.  Vim does this for you
880 automatically if it can recognize the type.  When Vim can't guess it the type
881 defaults to XML.
882 You can set the type manually: >
883         :let docbk_type = "sgml"
884 or: >
885         :let docbk_type = "xml"
886 You need to do this before loading the syntax file, which is complicated.
887 Simpler is setting the filetype to "docbkxml" or "docbksgml": >
888         :set filetype=docbksgml
889 or: >
890         :set filetype=docbkxml
893 DOSBATCH                                *dosbatch.vim* *ft-dosbatch-syntax*
895 There is one option with highlighting DOS batch files.  This covers new
896 extensions to the Command Interpreter introduced with Windows 2000 and
897 is controlled by the variable dosbatch_cmdextversion.  For Windows NT
898 this should have the value 1, and for Windows 2000 it should be 2.
899 Select the version you want with the following line: >
901    :let dosbatch_cmdextversion = 1
903 If this variable is not defined it defaults to a value of 2 to support
904 Windows 2000.
906 A second option covers whether *.btm files should be detected as type
907 "dosbatch" (MS-DOS batch files) or type "btm" (4DOS batch files).  The latter
908 is used by default.  You may select the former with the following line: >
910    :let g:dosbatch_syntax_for_btm = 1
912 If this variable is undefined or zero, btm syntax is selected.
915 DOXYGEN                                         *doxygen.vim* *doxygen-syntax*
917 Doxygen generates code documentation using a special documentation format
918 (similar to Javadoc).  This syntax script adds doxygen highlighting to c, cpp,
919 idl and php files, and should also work with java.
921 There are a few of ways to turn on doxygen formatting. It can be done
922 explicitly or in a modeline by appending '.doxygen' to the syntax of the file.
923 Example: >
924         :set syntax=c.doxygen
925 or >
926         // vim:syntax=c.doxygen
928 It can also be done automatically for C, C++, C# and IDL files by setting the
929 global or buffer-local variable load_doxygen_syntax.  This is done by adding
930 the following to your .vimrc. >
931         :let g:load_doxygen_syntax=1
933 There are a couple of variables that have an effect on syntax highlighting, and
934 are to do with non-standard highlighting options.
936 Variable                        Default Effect ~
937 g:doxygen_enhanced_color
938 g:doxygen_enhanced_colour       0       Use non-standard highlighting for
939                                         doxygen comments.
941 doxygen_my_rendering            0       Disable rendering of HTML bold, italic
942                                         and html_my_rendering underline.
944 doxygen_javadoc_autobrief       1       Set to 0 to disable javadoc autobrief
945                                         colour highlighting.
947 doxygen_end_punctuation         '[.]'   Set to regexp match for the ending
948                                         punctuation of brief
950 There are also some hilight groups worth mentioning as they can be useful in
951 configuration.
953 Highlight                       Effect ~
954 doxygenErrorComment             The colour of an end-comment when missing
955                                 punctuation in a code, verbatim or dot section
956 doxygenLinkError                The colour of an end-comment when missing the
957                                 \endlink from a \link section.
960 DTD                                             *dtd.vim* *ft-dtd-syntax*
962 The DTD syntax highlighting is case sensitive by default.  To disable
963 case-sensitive highlighting, add the following line to your startup file: >
965         :let dtd_ignore_case=1
967 The DTD syntax file will highlight unknown tags as errors.  If
968 this is annoying, it can be turned off by setting: >
970         :let dtd_no_tag_errors=1
972 before sourcing the dtd.vim syntax file.
973 Parameter entity names are highlighted in the definition using the
974 'Type' highlighting group and 'Comment' for punctuation and '%'.
975 Parameter entity instances are highlighted using the 'Constant'
976 highlighting group and the 'Type' highlighting group for the
977 delimiters % and ;.  This can be turned off by setting: >
979         :let dtd_no_param_entities=1
981 The DTD syntax file is also included by xml.vim to highlight included dtd's.
984 EIFFEL                                  *eiffel.vim* *ft-eiffel-syntax*
986 While Eiffel is not case-sensitive, its style guidelines are, and the
987 syntax highlighting file encourages their use.  This also allows to
988 highlight class names differently.  If you want to disable case-sensitive
989 highlighting, add the following line to your startup file: >
991         :let eiffel_ignore_case=1
993 Case still matters for class names and TODO marks in comments.
995 Conversely, for even stricter checks, add one of the following lines: >
997         :let eiffel_strict=1
998         :let eiffel_pedantic=1
1000 Setting eiffel_strict will only catch improper capitalization for the
1001 five predefined words "Current", "Void", "Result", "Precursor", and
1002 "NONE", to warn against their accidental use as feature or class names.
1004 Setting eiffel_pedantic will enforce adherence to the Eiffel style
1005 guidelines fairly rigorously (like arbitrary mixes of upper- and
1006 lowercase letters as well as outdated ways to capitalize keywords).
1008 If you want to use the lower-case version of "Current", "Void",
1009 "Result", and "Precursor", you can use >
1011         :let eiffel_lower_case_predef=1
1013 instead of completely turning case-sensitive highlighting off.
1015 Support for ISE's proposed new creation syntax that is already
1016 experimentally handled by some compilers can be enabled by: >
1018         :let eiffel_ise=1
1020 Finally, some vendors support hexadecimal constants.  To handle them, add >
1022         :let eiffel_hex_constants=1
1024 to your startup file.
1027 ERLANG                                          *erlang.vim* *ft-erlang-syntax*
1029 The erlang highlighting supports Erlang (ERicsson LANGuage).
1030 Erlang is case sensitive and default extension is ".erl".
1032 If you want to disable keywords highlighting, put in your .vimrc: >
1033         :let erlang_keywords = 1
1034 If you want to disable built-in-functions highlighting, put in your
1035 .vimrc file: >
1036         :let erlang_functions = 1
1037 If you want to disable special characters highlighting, put in
1038 your .vimrc: >
1039         :let erlang_characters = 1
1042 FLEXWIKI                                *flexwiki.vim* *ft-flexwiki-syntax*
1044 FlexWiki is an ASP.NET-based wiki package available at http://www.flexwiki.com
1046 Syntax highlighting is available for the most common elements of FlexWiki
1047 syntax. The associated ftplugin script sets some buffer-local options to make
1048 editing FlexWiki pages more convenient. FlexWiki considers a newline as the
1049 start of a new paragraph, so the ftplugin sets 'tw'=0 (unlimited line length),
1050 'wrap' (wrap long lines instead of using horizontal scrolling), 'linebreak'
1051 (to wrap at a character in 'breakat' instead of at the last char on screen),
1052 and so on. It also includes some keymaps that are disabled by default.
1054 If you want to enable the keymaps that make "j" and "k" and the cursor keys
1055 move up and down by display lines, add this to your .vimrc: >
1056         :let flexwiki_maps = 1
1059 FORM                                            *form.vim* *ft-form-syntax*
1061 The coloring scheme for syntax elements in the FORM file uses the default
1062 modes Conditional, Number, Statement, Comment, PreProc, Type, and String,
1063 following the language specifications in 'Symbolic Manipulation with FORM' by
1064 J.A.M. Vermaseren, CAN, Netherlands, 1991.
1066 If you want include your own changes to the default colors, you have to
1067 redefine the following syntax groups:
1069     - formConditional
1070     - formNumber
1071     - formStatement
1072     - formHeaderStatement
1073     - formComment
1074     - formPreProc
1075     - formDirective
1076     - formType
1077     - formString
1079 Note that the form.vim syntax file implements FORM preprocessor commands and
1080 directives per default in the same syntax group.
1082 A predefined enhanced color mode for FORM is available to distinguish between
1083 header statements and statements in the body of a FORM program.  To activate
1084 this mode define the following variable in your vimrc file >
1086         :let form_enhanced_color=1
1088 The enhanced mode also takes advantage of additional color features for a dark
1089 gvim display.  Here, statements are colored LightYellow instead of Yellow, and
1090 conditionals are LightBlue for better distinction.
1093 FORTRAN                                 *fortran.vim* *ft-fortran-syntax*
1095 Default highlighting and dialect ~
1096 Highlighting appropriate for f95 (Fortran 95) is used by default.  This choice
1097 should be appropriate for most users most of the time because Fortran 95 is a
1098 superset of Fortran 90 and almost a superset of Fortran 77. Support for 
1099 Fortran 2003 and Fortran 2008 features has been introduced and is
1100 automatically available in the default (f95) highlighting.
1102 Fortran source code form ~
1103 Fortran 9x code can be in either fixed or free source form.  Note that the
1104 syntax highlighting will not be correct if the form is incorrectly set.
1106 When you create a new fortran file, the syntax script assumes fixed source
1107 form.  If you always use free source form, then >
1108     :let fortran_free_source=1
1109 in your .vimrc prior to the :syntax on command.  If you always use fixed source
1110 form, then >
1111     :let fortran_fixed_source=1
1112 in your .vimrc prior to the :syntax on command.
1114 If the form of the source code depends upon the file extension, then it is
1115 most convenient to set fortran_free_source in a ftplugin file.  For more
1116 information on ftplugin files, see |ftplugin|.  For example, if all your
1117 fortran files with an .f90 extension are written in free source form and the
1118 rest in fixed source form, add the following code to your ftplugin file >
1119     let s:extfname = expand("%:e")
1120     if s:extfname ==? "f90"
1121         let fortran_free_source=1
1122         unlet! fortran_fixed_source
1123     else
1124         let fortran_fixed_source=1
1125         unlet! fortran_free_source
1126     endif
1127 Note that this will work only if the "filetype plugin indent on" command
1128 precedes the "syntax on" command in your .vimrc file.
1130 When you edit an existing fortran file, the syntax script will assume free
1131 source form if the fortran_free_source variable has been set, and assumes
1132 fixed source form if the fortran_fixed_source variable has been set.  If
1133 neither of these variables have been set, the syntax script attempts to
1134 determine which source form has been used by examining the first five columns
1135 of the first 250 lines of your file.  If no signs of free source form are
1136 detected, then the file is assumed to be in fixed source form.  The algorithm
1137 should work in the vast majority of cases.  In some cases, such as a file that
1138 begins with 250 or more full-line comments, the script may incorrectly decide
1139 that the fortran code is in fixed form.  If that happens, just add a
1140 non-comment statement beginning anywhere in the first five columns of the
1141 first twenty five lines, save (:w) and then reload (:e!) the file.
1143 Tabs in fortran files ~
1144 Tabs are not recognized by the Fortran standards.  Tabs are not a good idea in
1145 fixed format fortran source code which requires fixed column boundaries.
1146 Therefore, tabs are marked as errors.  Nevertheless, some programmers like
1147 using tabs.  If your fortran files contain tabs, then you should set the
1148 variable fortran_have_tabs in your .vimrc with a command such as >
1149     :let fortran_have_tabs=1
1150 placed prior to the :syntax on command.  Unfortunately, the use of tabs will
1151 mean that the syntax file will not be able to detect incorrect margins.
1153 Syntax folding of fortran files ~
1154 If you wish to use foldmethod=syntax, then you must first set the variable
1155 fortran_fold with a command such as >
1156     :let fortran_fold=1
1157 to instruct the syntax script to define fold regions for program units, that
1158 is main programs starting with a program statement, subroutines, function
1159 subprograms, block data subprograms, interface blocks, and modules.  If you
1160 also set the variable fortran_fold_conditionals with a command such as >
1161     :let fortran_fold_conditionals=1
1162 then fold regions will also be defined for do loops, if blocks, and select
1163 case constructs.  If you also set the variable
1164 fortran_fold_multilinecomments with a command such as >
1165     :let fortran_fold_multilinecomments=1
1166 then fold regions will also be defined for three or more consecutive comment
1167 lines.  Note that defining fold regions can be slow for large files.
1169 If fortran_fold, and possibly fortran_fold_conditionals and/or
1170 fortran_fold_multilinecomments, have been set, then vim will fold your file if
1171 you set foldmethod=syntax.  Comments or blank lines placed between two program
1172 units are not folded because they are seen as not belonging to any program
1173 unit.
1175 More precise fortran syntax ~
1176 If you set the variable fortran_more_precise with a command such as >
1177     :let fortran_more_precise=1
1178 then the syntax coloring will be more precise but slower.  In particular,
1179 statement labels used in do, goto and arithmetic if statements will be
1180 recognized, as will construct names at the end of a do, if, select or forall
1181 construct.
1183 Non-default fortran dialects ~
1184 The syntax script supports five Fortran dialects: f95, f90, f77, the Lahey
1185 subset elf90, and the Imagine1 subset F.
1187 If you use f77 with extensions, even common ones like do/enddo loops, do/while
1188 loops and free source form that are supported by most f77 compilers including
1189 g77 (GNU Fortran), then you will probably find the default highlighting
1190 satisfactory.  However, if you use strict f77 with no extensions, not even free
1191 source form or the MIL STD 1753 extensions, then the advantages of setting the
1192 dialect to f77 are that names such as SUM are recognized as user variable
1193 names and not highlighted as f9x intrinsic functions, that obsolete constructs
1194 such as ASSIGN statements are not highlighted as todo items, and that fixed
1195 source form will be assumed.
1197 If you use elf90 or F, the advantage of setting the dialect appropriately is
1198 that f90 features excluded from these dialects will be highlighted as todo
1199 items and that free source form will be assumed as required for these
1200 dialects.
1202 The dialect can be selected by setting the variable fortran_dialect.  The
1203 permissible values of fortran_dialect are case-sensitive and must be "f95",
1204 "f90", "f77", "elf" or "F".  Invalid values of fortran_dialect are ignored.
1206 If all your fortran files use the same dialect, set fortran_dialect in your
1207 .vimrc prior to your syntax on statement.  If the dialect depends upon the file
1208 extension, then it is most convenient to set it in a ftplugin file.  For more
1209 information on ftplugin files, see |ftplugin|.  For example, if all your
1210 fortran files with an .f90 extension are written in the elf subset, your
1211 ftplugin file should contain the code >
1212     let s:extfname = expand("%:e")
1213     if s:extfname ==? "f90"
1214         let fortran_dialect="elf"
1215     else
1216         unlet! fortran_dialect
1217     endif
1218 Note that this will work only if the "filetype plugin indent on" command
1219 precedes the "syntax on" command in your .vimrc file.
1221 Finer control is necessary if the file extension does not uniquely identify
1222 the dialect.  You can override the default dialect, on a file-by-file basis, by
1223 including a comment with the directive "fortran_dialect=xx" (where xx=f77 or
1224 elf or F or f90 or f95) in one of the first three lines in your file.  For
1225 example, your older .f files may be written in extended f77 but your newer
1226 ones may be F codes, and you would identify the latter by including in the
1227 first three lines of those files a Fortran comment of the form >
1228   ! fortran_dialect=F
1229 F overrides elf if both directives are present.
1231 Limitations ~
1232 Parenthesis checking does not catch too few closing parentheses.  Hollerith
1233 strings are not recognized.  Some keywords may be highlighted incorrectly
1234 because Fortran90 has no reserved words.
1236 For further information related to fortran, see |ft-fortran-indent| and
1237 |ft-fortran-plugin|.
1240 FVWM CONFIGURATION FILES                        *fvwm.vim* *ft-fvwm-syntax*
1242 In order for Vim to recognize Fvwm configuration files that do not match
1243 the patterns *fvwmrc* or *fvwm2rc* , you must put additional patterns
1244 appropriate to your system in your myfiletypes.vim file.  For these
1245 patterns, you must set the variable "b:fvwm_version" to the major version
1246 number of Fvwm, and the 'filetype' option to fvwm.
1248 For example, to make Vim identify all files in /etc/X11/fvwm2/
1249 as Fvwm2 configuration files, add the following: >
1251   :au! BufNewFile,BufRead /etc/X11/fvwm2/*  let b:fvwm_version = 2 |
1252                                          \ set filetype=fvwm
1254 If you'd like Vim to highlight all valid color names, tell it where to
1255 find the color database (rgb.txt) on your system.  Do this by setting
1256 "rgb_file" to its location.  Assuming your color database is located
1257 in /usr/X11/lib/X11/, you should add the line >
1259         :let rgb_file = "/usr/X11/lib/X11/rgb.txt"
1261 to your .vimrc file.
1264 GSP                                             *gsp.vim* *ft-gsp-syntax*
1266 The default coloring style for GSP pages is defined by |html.vim|, and
1267 the coloring for java code (within java tags or inline between backticks)
1268 is defined by |java.vim|.  The following HTML groups defined in |html.vim|
1269 are redefined to incorporate and highlight inline java code:
1271     htmlString
1272     htmlValue
1273     htmlEndTag
1274     htmlTag
1275     htmlTagN
1277 Highlighting should look fine most of the places where you'd see inline
1278 java code, but in some special cases it may not.  To add another HTML
1279 group where you will have inline java code where it does not highlight
1280 correctly, just copy the line you want from |html.vim| and add gspJava
1281 to the contains clause.
1283 The backticks for inline java are highlighted according to the htmlError
1284 group to make them easier to see.
1287 GROFF                                           *groff.vim* *ft-groff-syntax*
1289 The groff syntax file is a wrapper for |nroff.vim|, see the notes
1290 under that heading for examples of use and configuration.  The purpose
1291 of this wrapper is to set up groff syntax extensions by setting the
1292 filetype from a |modeline| or in a personal filetype definitions file
1293 (see |filetype.txt|).
1296 HASKELL                      *haskell.vim* *lhaskell.vim* *ft-haskell-syntax*
1298 The Haskell syntax files support plain Haskell code as well as literate
1299 Haskell code, the latter in both Bird style and TeX style.  The Haskell
1300 syntax highlighting will also highlight C preprocessor directives.
1302 If you want to highlight delimiter characters (useful if you have a
1303 light-coloured background), add to your .vimrc: >
1304         :let hs_highlight_delimiters = 1
1305 To treat True and False as keywords as opposed to ordinary identifiers,
1306 add: >
1307         :let hs_highlight_boolean = 1
1308 To also treat the names of primitive types as keywords: >
1309         :let hs_highlight_types = 1
1310 And to treat the names of even more relatively common types as keywords: >
1311         :let hs_highlight_more_types = 1
1312 If you want to highlight the names of debugging functions, put in
1313 your .vimrc: >
1314         :let hs_highlight_debug = 1
1316 The Haskell syntax highlighting also highlights C preprocessor
1317 directives, and flags lines that start with # but are not valid
1318 directives as erroneous.  This interferes with Haskell's syntax for
1319 operators, as they may start with #.  If you want to highlight those
1320 as operators as opposed to errors, put in your .vimrc: >
1321         :let hs_allow_hash_operator = 1
1323 The syntax highlighting for literate Haskell code will try to
1324 automatically guess whether your literate Haskell code contains
1325 TeX markup or not, and correspondingly highlight TeX constructs
1326 or nothing at all.  You can override this globally by putting
1327 in your .vimrc >
1328         :let lhs_markup = none
1329 for no highlighting at all, or >
1330         :let lhs_markup = tex
1331 to force the highlighting to always try to highlight TeX markup.
1332 For more flexibility, you may also use buffer local versions of
1333 this variable, so e.g. >
1334         :let b:lhs_markup = tex
1335 will force TeX highlighting for a particular buffer.  It has to be
1336 set before turning syntax highlighting on for the buffer or
1337 loading a file.
1340 HTML                                            *html.vim* *ft-html-syntax*
1342 The coloring scheme for tags in the HTML file works as follows.
1344 The  <> of opening tags are colored differently than the </> of a closing tag.
1345 This is on purpose! For opening tags the 'Function' color is used, while for
1346 closing tags the 'Type' color is used (See syntax.vim to check how those are
1347 defined for you)
1349 Known tag names are colored the same way as statements in C.  Unknown tag
1350 names are colored with the same color as the <> or </> respectively which
1351 makes it easy to spot errors
1353 Note that the same is true for argument (or attribute) names.  Known attribute
1354 names are colored differently than unknown ones.
1356 Some HTML tags are used to change the rendering of text.  The following tags
1357 are recognized by the html.vim syntax coloring file and change the way normal
1358 text is shown: <B> <I> <U> <EM> <STRONG> (<EM> is used as an alias for <I>,
1359 while <STRONG> as an alias for <B>), <H1> - <H6>, <HEAD>, <TITLE> and <A>, but
1360 only if used as a link (that is, it must include a href as in
1361 <A href="somefile.html">).
1363 If you want to change how such text is rendered, you must redefine the
1364 following syntax groups:
1366     - htmlBold
1367     - htmlBoldUnderline
1368     - htmlBoldUnderlineItalic
1369     - htmlUnderline
1370     - htmlUnderlineItalic
1371     - htmlItalic
1372     - htmlTitle for titles
1373     - htmlH1 - htmlH6 for headings
1375 To make this redefinition work you must redefine them all with the exception
1376 of the last two (htmlTitle and htmlH[1-6], which are optional) and define the
1377 following variable in your vimrc (this is due to the order in which the files
1378 are read during initialization) >
1379         :let html_my_rendering=1
1381 If you'd like to see an example download mysyntax.vim at
1382 http://www.fleiner.com/vim/download.html
1384 You can also disable this rendering by adding the following line to your
1385 vimrc file: >
1386         :let html_no_rendering=1
1388 HTML comments are rather special (see an HTML reference document for the
1389 details), and the syntax coloring scheme will highlight all errors.
1390 However, if you prefer to use the wrong style (starts with <!-- and
1391 ends with --!>) you can define >
1392         :let html_wrong_comments=1
1394 JavaScript and Visual Basic embedded inside HTML documents are highlighted as
1395 'Special' with statements, comments, strings and so on colored as in standard
1396 programming languages.  Note that only JavaScript and Visual Basic are currently
1397 supported, no other scripting language has been added yet.
1399 Embedded and inlined cascading style sheets (CSS) are highlighted too.
1401 There are several html preprocessor languages out there.  html.vim has been
1402 written such that it should be trivial to include it.  To do so add the
1403 following two lines to the syntax coloring file for that language
1404 (the example comes from the asp.vim file):
1406     runtime! syntax/html.vim
1407     syn cluster htmlPreproc add=asp
1409 Now you just need to make sure that you add all regions that contain
1410 the preprocessor language to the cluster htmlPreproc.
1413 HTML/OS (by Aestiva)                            *htmlos.vim* *ft-htmlos-syntax*
1415 The coloring scheme for HTML/OS works as follows:
1417 Functions and variable names are the same color by default, because VIM
1418 doesn't specify different colors for Functions and Identifiers.  To change
1419 this (which is recommended if you want function names to be recognizable in a
1420 different color) you need to add the following line to either your ~/.vimrc: >
1421   :hi Function term=underline cterm=bold ctermfg=LightGray
1423 Of course, the ctermfg can be a different color if you choose.
1425 Another issues that HTML/OS runs into is that there is no special filetype to
1426 signify that it is a file with HTML/OS coding.  You can change this by opening
1427 a file and turning on HTML/OS syntax by doing the following: >
1428   :set syntax=htmlos
1430 Lastly, it should be noted that the opening and closing characters to begin a
1431 block of HTML/OS code can either be << or [[ and >> or ]], respectively.
1434 IA64                            *ia64.vim* *intel-itanium* *ft-ia64-syntax*
1436 Highlighting for the Intel Itanium 64 assembly language.  See |asm.vim| for
1437 how to recognize this filetype.
1439 To have *.inc files be recognized as IA64, add this to your .vimrc file: >
1440         :let g:filetype_inc = "ia64"
1443 INFORM                                          *inform.vim* *ft-inform-syntax*
1445 Inform highlighting includes symbols provided by the Inform Library, as
1446 most programs make extensive use of it.  If do not wish Library symbols
1447 to be highlighted add this to your vim startup: >
1448         :let inform_highlight_simple=1
1450 By default it is assumed that Inform programs are Z-machine targeted,
1451 and highlights Z-machine assembly language symbols appropriately.  If
1452 you intend your program to be targeted to a Glulx/Glk environment you
1453 need to add this to your startup sequence: >
1454         :let inform_highlight_glulx=1
1456 This will highlight Glulx opcodes instead, and also adds glk() to the
1457 set of highlighted system functions.
1459 The Inform compiler will flag certain obsolete keywords as errors when
1460 it encounters them.  These keywords are normally highlighted as errors
1461 by Vim.  To prevent such error highlighting, you must add this to your
1462 startup sequence: >
1463         :let inform_suppress_obsolete=1
1465 By default, the language features highlighted conform to Compiler
1466 version 6.30 and Library version 6.11.  If you are using an older
1467 Inform development environment, you may with to add this to your
1468 startup sequence: >
1469         :let inform_highlight_old=1
1471 IDL                                                     *idl.vim* *idl-syntax*
1473 IDL (Interface Definition Language) files are used to define RPC calls.  In
1474 Microsoft land, this is also used for defining COM interfaces and calls.
1476 IDL's structure is simple enough to permit a full grammar based approach to
1477 rather than using a few heuristics.  The result is large and somewhat
1478 repetitive but seems to work.
1480 There are some Microsoft extensions to idl files that are here.  Some of them
1481 are disabled by defining idl_no_ms_extensions.
1483 The more complex of the extensions are disabled by defining idl_no_extensions.
1485 Variable                        Effect ~
1487 idl_no_ms_extensions            Disable some of the Microsoft specific
1488                                 extensions
1489 idl_no_extensions               Disable complex extensions
1490 idlsyntax_showerror             Show IDL errors (can be rather intrusive, but
1491                                 quite helpful)
1492 idlsyntax_showerror_soft        Use softer colours by default for errors
1495 JAVA                                            *java.vim* *ft-java-syntax*
1497 The java.vim syntax highlighting file offers several options:
1499 In Java 1.0.2 it was never possible to have braces inside parens, so this was
1500 flagged as an error.  Since Java 1.1 this is possible (with anonymous
1501 classes), and therefore is no longer marked as an error.  If you prefer the old
1502 way, put the following line into your vim startup file: >
1503         :let java_mark_braces_in_parens_as_errors=1
1505 All identifiers in java.lang.* are always visible in all classes.  To
1506 highlight them use: >
1507         :let java_highlight_java_lang_ids=1
1509 You can also highlight identifiers of most standard Java packages if you
1510 download the javaid.vim script at http://www.fleiner.com/vim/download.html.
1511 If you prefer to only highlight identifiers of a certain package, say java.io
1512 use the following: >
1513         :let java_highlight_java_io=1
1514 Check the javaid.vim file for a list of all the packages that are supported.
1516 Function names are not highlighted, as the way to find functions depends on
1517 how you write Java code.  The syntax file knows two possible ways to highlight
1518 functions:
1520 If you write function declarations that are always indented by either
1521 a tab, 8 spaces or 2 spaces you may want to set >
1522         :let java_highlight_functions="indent"
1523 However, if you follow the Java guidelines about how functions and classes are
1524 supposed to be named (with respect to upper and lowercase), use >
1525         :let java_highlight_functions="style"
1526 If both options do not work for you, but you would still want function
1527 declarations to be highlighted create your own definitions by changing the
1528 definitions in java.vim or by creating your own java.vim which includes the
1529 original one and then adds the code to highlight functions.
1531 In Java 1.1 the functions System.out.println() and System.err.println() should
1532 only be used for debugging.  Therefore it is possible to highlight debugging
1533 statements differently.  To do this you must add the following definition in
1534 your startup file: >
1535         :let java_highlight_debug=1
1536 The result will be that those statements are highlighted as 'Special'
1537 characters.  If you prefer to have them highlighted differently you must define
1538 new highlightings for the following groups.:
1539     Debug, DebugSpecial, DebugString, DebugBoolean, DebugType
1540 which are used for the statement itself, special characters used in debug
1541 strings, strings, boolean constants and types (this, super) respectively.  I
1542 have opted to chose another background for those statements.
1544 In order to help you write code that can be easily ported between Java and
1545 C++, all C++ keywords can be marked as an error in a Java program.  To
1546 have this add this line in your .vimrc file: >
1547         :let java_allow_cpp_keywords = 0
1549 Javadoc is a program that takes special comments out of Java program files and
1550 creates HTML pages.  The standard configuration will highlight this HTML code
1551 similarly to HTML files (see |html.vim|).  You can even add Javascript
1552 and CSS inside this code (see below).  There are four differences however:
1553   1. The title (all characters up to the first '.' which is followed by
1554      some white space or up to the first '@') is colored differently (to change
1555      the color change the group CommentTitle).
1556   2. The text is colored as 'Comment'.
1557   3. HTML comments are colored as 'Special'
1558   4. The special Javadoc tags (@see, @param, ...) are highlighted as specials
1559      and the argument (for @see, @param, @exception) as Function.
1560 To turn this feature off add the following line to your startup file: >
1561         :let java_ignore_javadoc=1
1563 If you use the special Javadoc comment highlighting described above you
1564 can also turn on special highlighting for Javascript, visual basic
1565 scripts and embedded CSS (stylesheets).  This makes only sense if you
1566 actually have Javadoc comments that include either Javascript or embedded
1567 CSS.  The options to use are >
1568         :let java_javascript=1
1569         :let java_css=1
1570         :let java_vb=1
1572 In order to highlight nested parens with different colors define colors
1573 for javaParen, javaParen1 and javaParen2, for example with >
1574         :hi link javaParen Comment
1575 or >
1576         :hi javaParen ctermfg=blue guifg=#0000ff
1578 If you notice highlighting errors while scrolling backwards, which are fixed
1579 when redrawing with CTRL-L, try setting the "java_minlines" internal variable
1580 to a larger number: >
1581         :let java_minlines = 50
1582 This will make the syntax synchronization start 50 lines before the first
1583 displayed line.  The default value is 10.  The disadvantage of using a larger
1584 number is that redrawing can become slow.
1587 LACE                                            *lace.vim* *ft-lace-syntax*
1589 Lace (Language for Assembly of Classes in Eiffel) is case insensitive, but the
1590 style guide lines are not.  If you prefer case insensitive highlighting, just
1591 define the vim variable 'lace_case_insensitive' in your startup file: >
1592         :let lace_case_insensitive=1
1595 LEX                                             *lex.vim* *ft-lex-syntax*
1597 Lex uses brute-force synchronizing as the "^%%$" section delimiter
1598 gives no clue as to what section follows.  Consequently, the value for >
1599         :syn sync minlines=300
1600 may be changed by the user if s/he is experiencing synchronization
1601 difficulties (such as may happen with large lex files).
1604 LIFELINES                               *lifelines.vim* *ft-lifelines-syntax*
1606 To highlight deprecated functions as errors, add in your .vimrc: >
1608         :let g:lifelines_deprecated = 1
1611 LISP                                            *lisp.vim* *ft-lisp-syntax*
1613 The lisp syntax highlighting provides two options: >
1615         g:lisp_instring : if it exists, then "(...)" strings are highlighted
1616                           as if the contents of the string were lisp.
1617                           Useful for AutoLisp.
1618         g:lisp_rainbow  : if it exists and is nonzero, then differing levels
1619                           of parenthesization will receive different
1620                           highlighting.
1622 The g:lisp_rainbow option provides 10 levels of individual colorization for
1623 the parentheses and backquoted parentheses.  Because of the quantity of
1624 colorization levels, unlike non-rainbow highlighting, the rainbow mode
1625 specifies its highlighting using ctermfg and guifg, thereby bypassing the
1626 usual colorscheme control using standard highlighting groups.  The actual
1627 highlighting used depends on the dark/bright setting  (see |'bg'|).
1630 LITE                                            *lite.vim* *ft-lite-syntax*
1632 There are two options for the lite syntax highlighting.
1634 If you like SQL syntax highlighting inside Strings, use this: >
1636         :let lite_sql_query = 1
1638 For syncing, minlines defaults to 100.  If you prefer another value, you can
1639 set "lite_minlines" to the value you desire.  Example: >
1641         :let lite_minlines = 200
1644 LPC                                             *lpc.vim* *ft-lpc-syntax*
1646 LPC stands for a simple, memory-efficient language: Lars Pensj| C.  The
1647 file name of LPC is usually *.c.  Recognizing these files as LPC would bother
1648 users writing only C programs.  If you want to use LPC syntax in Vim, you
1649 should set a variable in your .vimrc file: >
1651         :let lpc_syntax_for_c = 1
1653 If it doesn't work properly for some particular C or LPC files, use a
1654 modeline.  For a LPC file:
1656         // vim:set ft=lpc:
1658 For a C file that is recognized as LPC:
1660         // vim:set ft=c:
1662 If you don't want to set the variable, use the modeline in EVERY LPC file.
1664 There are several implementations for LPC, we intend to support most widely
1665 used ones.  Here the default LPC syntax is for MudOS series, for MudOS v22
1666 and before, you should turn off the sensible modifiers, and this will also
1667 asserts the new efuns after v22 to be invalid, don't set this variable when
1668 you are using the latest version of MudOS: >
1670         :let lpc_pre_v22 = 1
1672 For LpMud 3.2 series of LPC: >
1674         :let lpc_compat_32 = 1
1676 For LPC4 series of LPC: >
1678         :let lpc_use_lpc4_syntax = 1
1680 For uLPC series of LPC:
1681 uLPC has been developed to Pike, so you should use Pike syntax
1682 instead, and the name of your source file should be *.pike
1685 LUA                                             *lua.vim* *ft-lua-syntax*
1687 This syntax file may be used for Lua 4.0, Lua 5.0 or Lua 5.1 (the latter is
1688 the default). You can select one of these versions using the global variables
1689 lua_version and lua_subversion. For example, to activate Lua
1690 4.0 syntax highlighting, use this command: >
1692         :let lua_version = 4
1694 If you are using Lua 5.0, use these commands: >
1696         :let lua_version = 5
1697         :let lua_subversion = 0
1699 To restore highlighting for Lua 5.1: >
1701         :let lua_version = 5
1702         :let lua_subversion = 1
1705 MAIL                                            *mail.vim* *ft-mail.vim*
1707 Vim highlights all the standard elements of an email (headers, signatures,
1708 quoted text and URLs / email addresses).  In keeping with standard conventions,
1709 signatures begin in a line containing only "--" followed optionally by
1710 whitespaces and end with a newline.
1712 Vim treats lines beginning with ']', '}', '|', '>' or a word followed by '>'
1713 as quoted text.  However Vim highlights headers and signatures in quoted text
1714 only if the text is quoted with '>' (optionally followed by one space).
1716 By default mail.vim synchronises syntax to 100 lines before the first
1717 displayed line.  If you have a slow machine, and generally deal with emails
1718 with short headers, you can change this to a smaller value: >
1720     :let mail_minlines = 30
1723 MAKE                                            *make.vim* *ft-make-syntax*
1725 In makefiles, commands are usually highlighted to make it easy for you to spot
1726 errors.  However, this may be too much coloring for you.  You can turn this
1727 feature off by using: >
1729         :let make_no_commands = 1
1732 MAPLE                                           *maple.vim* *ft-maple-syntax*
1734 Maple V, by Waterloo Maple Inc, supports symbolic algebra.  The language
1735 supports many packages of functions which are selectively loaded by the user.
1736 The standard set of packages' functions as supplied in Maple V release 4 may be
1737 highlighted at the user's discretion.  Users may place in their .vimrc file: >
1739         :let mvpkg_all= 1
1741 to get all package functions highlighted, or users may select any subset by
1742 choosing a variable/package from the table below and setting that variable to
1743 1, also in their .vimrc file (prior to sourcing
1744 $VIMRUNTIME/syntax/syntax.vim).
1746         Table of Maple V Package Function Selectors >
1747   mv_DEtools     mv_genfunc     mv_networks     mv_process
1748   mv_Galois      mv_geometry    mv_numapprox    mv_simplex
1749   mv_GaussInt    mv_grobner     mv_numtheory    mv_stats
1750   mv_LREtools    mv_group       mv_orthopoly    mv_student
1751   mv_combinat    mv_inttrans    mv_padic        mv_sumtools
1752   mv_combstruct mv_liesymm      mv_plots        mv_tensor
1753   mv_difforms    mv_linalg      mv_plottools    mv_totorder
1754   mv_finance     mv_logic       mv_powseries
1757 MATHEMATICA             *mma.vim* *ft-mma-syntax* *ft-mathematica-syntax*
1759 Empty *.m files will automatically be presumed to be Matlab files unless you
1760 have the following in your .vimrc: >
1762         let filetype_m = "mma"
1765 MOO                                             *moo.vim* *ft-moo-syntax*
1767 If you use C-style comments inside expressions and find it mangles your
1768 highlighting, you may want to use extended (slow!) matches for C-style
1769 comments: >
1771         :let moo_extended_cstyle_comments = 1
1773 To disable highlighting of pronoun substitution patterns inside strings: >
1775         :let moo_no_pronoun_sub = 1
1777 To disable highlighting of the regular expression operator '%|', and matching
1778 '%(' and '%)' inside strings: >
1780         :let moo_no_regexp = 1
1782 Unmatched double quotes can be recognized and highlighted as errors: >
1784         :let moo_unmatched_quotes = 1
1786 To highlight builtin properties (.name, .location, .programmer etc.): >
1788         :let moo_builtin_properties = 1
1790 Unknown builtin functions can be recognized and highlighted as errors.  If you
1791 use this option, add your own extensions to the mooKnownBuiltinFunction group.
1792 To enable this option: >
1794         :let moo_unknown_builtin_functions = 1
1796 An example of adding sprintf() to the list of known builtin functions: >
1798         :syn keyword mooKnownBuiltinFunction sprintf contained
1801 MSQL                                            *msql.vim* *ft-msql-syntax*
1803 There are two options for the msql syntax highlighting.
1805 If you like SQL syntax highlighting inside Strings, use this: >
1807         :let msql_sql_query = 1
1809 For syncing, minlines defaults to 100.  If you prefer another value, you can
1810 set "msql_minlines" to the value you desire.  Example: >
1812         :let msql_minlines = 200
1815 NCF                                             *ncf.vim* *ft-ncf-syntax*
1817 There is one option for NCF syntax highlighting.
1819 If you want to have unrecognized (by ncf.vim) statements highlighted as
1820 errors, use this: >
1822         :let ncf_highlight_unknowns = 1
1824 If you don't want to highlight these errors, leave it unset.
1827 NROFF                                           *nroff.vim* *ft-nroff-syntax*
1829 The nroff syntax file works with AT&T n/troff out of the box.  You need to
1830 activate the GNU groff extra features included in the syntax file before you
1831 can use them.
1833 For example, Linux and BSD distributions use groff as their default text
1834 processing package.  In order to activate the extra syntax highlighting
1835 features for groff, add the following option to your start-up files: >
1837   :let b:nroff_is_groff = 1
1839 Groff is different from the old AT&T n/troff that you may still find in
1840 Solaris.  Groff macro and request names can be longer than 2 characters and
1841 there are extensions to the language primitives.  For example, in AT&T troff
1842 you access the year as a 2-digit number with the request \(yr.  In groff you
1843 can use the same request, recognized for compatibility, or you can use groff's
1844 native syntax, \[yr].  Furthermore, you can use a 4-digit year directly:
1845 \[year].  Macro requests can be longer than 2 characters, for example, GNU mm
1846 accepts the requests ".VERBON" and ".VERBOFF" for creating verbatim
1847 environments.
1849 In order to obtain the best formatted output g/troff can give you, you should
1850 follow a few simple rules about spacing and punctuation.
1852 1. Do not leave empty spaces at the end of lines.
1854 2. Leave one space and one space only after an end-of-sentence period,
1855    exclamation mark, etc.
1857 3. For reasons stated below, it is best to follow all period marks with a
1858    carriage return.
1860 The reason behind these unusual tips is that g/n/troff have a line breaking
1861 algorithm that can be easily upset if you don't follow the rules given above.
1863 Unlike TeX, troff fills text line-by-line, not paragraph-by-paragraph and,
1864 furthermore, it does not have a concept of glue or stretch, all horizontal and
1865 vertical space input will be output as is.
1867 Therefore, you should be careful about not using more space between sentences
1868 than you intend to have in your final document.  For this reason, the common
1869 practice is to insert a carriage return immediately after all punctuation
1870 marks.  If you want to have "even" text in your final processed output, you
1871 need to maintaining regular spacing in the input text.  To mark both trailing
1872 spaces and two or more spaces after a punctuation as an error, use: >
1874   :let nroff_space_errors = 1
1876 Another technique to detect extra spacing and other errors that will interfere
1877 with the correct typesetting of your file, is to define an eye-catching
1878 highlighting definition for the syntax groups "nroffDefinition" and
1879 "nroffDefSpecial" in your configuration files.  For example: >
1881   hi def nroffDefinition term=italic cterm=italic gui=reverse
1882   hi def nroffDefSpecial term=italic,bold cterm=italic,bold
1883                          \ gui=reverse,bold
1885 If you want to navigate preprocessor entries in your source file as easily as
1886 with section markers, you can activate the following option in your .vimrc
1887 file: >
1889         let b:preprocs_as_sections = 1
1891 As well, the syntax file adds an extra paragraph marker for the extended
1892 paragraph macro (.XP) in the ms package.
1894 Finally, there is a |groff.vim| syntax file that can be used for enabling
1895 groff syntax highlighting either on a file basis or globally by default.
1898 OCAML                                           *ocaml.vim* *ft-ocaml-syntax*
1900 The OCaml syntax file handles files having the following prefixes: .ml,
1901 .mli, .mll and .mly.  By setting the following variable >
1903         :let ocaml_revised = 1
1905 you can switch from standard OCaml-syntax to revised syntax as supported
1906 by the camlp4 preprocessor.  Setting the variable >
1908         :let ocaml_noend_error = 1
1910 prevents highlighting of "end" as error, which is useful when sources
1911 contain very long structures that Vim does not synchronize anymore.
1914 PAPP                                            *papp.vim* *ft-papp-syntax*
1916 The PApp syntax file handles .papp files and, to a lesser extend, .pxml
1917 and .pxsl files which are all a mixture of perl/xml/html/other using xml
1918 as the top-level file format.  By default everything inside phtml or pxml
1919 sections is treated as a string with embedded preprocessor commands.  If
1920 you set the variable: >
1922         :let papp_include_html=1
1924 in your startup file it will try to syntax-hilight html code inside phtml
1925 sections, but this is relatively slow and much too colourful to be able to
1926 edit sensibly. ;)
1928 The newest version of the papp.vim syntax file can usually be found at
1929 http://papp.plan9.de.
1932 PASCAL                                          *pascal.vim* *ft-pascal-syntax*
1934 Files matching "*.p" could be Progress or Pascal.  If the automatic detection
1935 doesn't work for you, or you don't edit Progress at all, use this in your
1936 startup vimrc: >
1938    :let filetype_p = "pascal"
1940 The Pascal syntax file has been extended to take into account some extensions
1941 provided by Turbo Pascal, Free Pascal Compiler and GNU Pascal Compiler.
1942 Delphi keywords are also supported.  By default, Turbo Pascal 7.0 features are
1943 enabled.  If you prefer to stick with the standard Pascal keywords, add the
1944 following line to your startup file: >
1946    :let pascal_traditional=1
1948 To switch on Delphi specific constructions (such as one-line comments,
1949 keywords, etc): >
1951    :let pascal_delphi=1
1954 The option pascal_symbol_operator controls whether symbol operators such as +,
1955 *, .., etc. are displayed using the Operator color or not.  To colorize symbol
1956 operators, add the following line to your startup file: >
1958    :let pascal_symbol_operator=1
1960 Some functions are highlighted by default.  To switch it off: >
1962    :let pascal_no_functions=1
1964 Furthermore, there are specific variables for some compilers.  Besides
1965 pascal_delphi, there are pascal_gpc and pascal_fpc.  Default extensions try to
1966 match Turbo Pascal. >
1968    :let pascal_gpc=1
1970 or >
1972    :let pascal_fpc=1
1974 To ensure that strings are defined on a single line, you can define the
1975 pascal_one_line_string variable. >
1977    :let pascal_one_line_string=1
1979 If you dislike <Tab> chars, you can set the pascal_no_tabs variable.  Tabs
1980 will be highlighted as Error. >
1982    :let pascal_no_tabs=1
1986 PERL                                            *perl.vim* *ft-perl-syntax*
1988 There are a number of possible options to the perl syntax highlighting.
1990 If you use POD files or POD segments, you might: >
1992         :let perl_include_pod = 1
1994 The reduce the complexity of parsing (and increase performance) you can switch
1995 off two elements in the parsing of variable names and contents. >
1997 To handle package references in variable and function names not differently
1998 from the rest of the name (like 'PkgName::' in '$PkgName::VarName'): >
2000         :let perl_no_scope_in_variables = 1
2002 (In Vim 6.x it was the other way around: "perl_want_scope_in_variables"
2003 enabled it.)
2005 If you do not want complex things like '@{${"foo"}}' to be parsed: >
2007         :let perl_no_extended_vars = 1
2009 (In Vim 6.x it was the other way around: "perl_extended_vars" enabled it.)
2011 The coloring strings can be changed.  By default strings and qq friends will be
2012 highlighted like the first line.  If you set the variable
2013 perl_string_as_statement, it will be highlighted as in the second line.
2015    "hello world!"; qq|hello world|;
2016    ^^^^^^^^^^^^^^NN^^^^^^^^^^^^^^^N       (unlet perl_string_as_statement)
2017    S^^^^^^^^^^^^SNNSSS^^^^^^^^^^^SN       (let perl_string_as_statement)
2019 (^ = perlString, S = perlStatement, N = None at all)
2021 The syncing has 3 options.  The first two switch off some triggering of
2022 synchronization and should only be needed in case it fails to work properly.
2023 If while scrolling all of a sudden the whole screen changes color completely
2024 then you should try and switch off one of those.  Let me know if you can figure
2025 out the line that causes the mistake.
2027 One triggers on "^\s*sub\s*" and the other on "^[$@%]" more or less. >
2029         :let perl_no_sync_on_sub
2030         :let perl_no_sync_on_global_var
2032 Below you can set the maximum distance VIM should look for starting points for
2033 its attempts in syntax highlighting. >
2035         :let perl_sync_dist = 100
2037 If you want to use folding with perl, set perl_fold: >
2039         :let perl_fold = 1
2041 If you want to fold blocks in if statements, etc. as well set the following: >
2043         :let perl_fold_blocks = 1
2045 To avoid folding packages or subs when perl_fold is let, let the appropriate
2046 variable(s): >
2048         :unlet perl_nofold_packages
2049         :unlet perl_nofold_subs
2053 PHP3 and PHP4           *php.vim* *php3.vim* *ft-php-syntax* *ft-php3-syntax*
2055 [note: previously this was called "php3", but since it now also supports php4
2056 it has been renamed to "php"]
2058 There are the following options for the php syntax highlighting.
2060 If you like SQL syntax highlighting inside Strings: >
2062   let php_sql_query = 1
2064 For highlighting the Baselib methods: >
2066   let php_baselib = 1
2068 Enable HTML syntax highlighting inside strings: >
2070   let php_htmlInStrings = 1
2072 Using the old colorstyle: >
2074   let php_oldStyle = 1
2076 Enable highlighting ASP-style short tags: >
2078   let php_asp_tags = 1
2080 Disable short tags: >
2082   let php_noShortTags = 1
2084 For highlighting parent error ] or ): >
2086   let php_parent_error_close = 1
2088 For skipping an php end tag, if there exists an open ( or [ without a closing
2089 one: >
2091   let php_parent_error_open = 1
2093 Enable folding for classes and functions: >
2095   let php_folding = 1
2097 Selecting syncing method: >
2099   let php_sync_method = x
2101 x = -1 to sync by search (default),
2102 x > 0 to sync at least x lines backwards,
2103 x = 0 to sync from start.
2106 PLAINTEX                                *plaintex.vim* *ft-plaintex-syntax*
2108 TeX is a typesetting language, and plaintex is the file type for the "plain"
2109 variant of TeX.  If you never want your *.tex files recognized as plain TeX,
2110 see |ft-tex-plugin|.
2112 This syntax file has the option >
2114         let g:plaintex_delimiters = 1
2116 if you want to highlight brackets "[]" and braces "{}".
2119 PPWIZARD                                        *ppwiz.vim* *ft-ppwiz-syntax*
2121 PPWizard is a preprocessor for HTML and OS/2 INF files
2123 This syntax file has the options:
2125 - ppwiz_highlight_defs : determines highlighting mode for PPWizard's
2126   definitions.  Possible values are
2128   ppwiz_highlight_defs = 1 : PPWizard #define statements retain the
2129     colors of their contents (e.g. PPWizard macros and variables)
2131   ppwiz_highlight_defs = 2 : preprocessor #define and #evaluate
2132     statements are shown in a single color with the exception of line
2133     continuation symbols
2135   The default setting for ppwiz_highlight_defs is 1.
2137 - ppwiz_with_html : If the value is 1 (the default), highlight literal
2138   HTML code; if 0, treat HTML code like ordinary text.
2141 PHTML                                           *phtml.vim* *ft-phtml-syntax*
2143 There are two options for the phtml syntax highlighting.
2145 If you like SQL syntax highlighting inside Strings, use this: >
2147         :let phtml_sql_query = 1
2149 For syncing, minlines defaults to 100.  If you prefer another value, you can
2150 set "phtml_minlines" to the value you desire.  Example: >
2152         :let phtml_minlines = 200
2155 POSTSCRIPT                              *postscr.vim* *ft-postscr-syntax*
2157 There are several options when it comes to highlighting PostScript.
2159 First which version of the PostScript language to highlight.  There are
2160 currently three defined language versions, or levels.  Level 1 is the original
2161 and base version, and includes all extensions prior to the release of level 2.
2162 Level 2 is the most common version around, and includes its own set of
2163 extensions prior to the release of level 3.  Level 3 is currently the highest
2164 level supported.  You select which level of the PostScript language you want
2165 highlighted by defining the postscr_level variable as follows: >
2167         :let postscr_level=2
2169 If this variable is not defined it defaults to 2 (level 2) since this is
2170 the most prevalent version currently.
2172 Note, not all PS interpreters will support all language features for a
2173 particular language level.  In particular the %!PS-Adobe-3.0 at the start of
2174 PS files does NOT mean the PostScript present is level 3 PostScript!
2176 If you are working with Display PostScript, you can include highlighting of
2177 Display PS language features by defining the postscr_display variable as
2178 follows: >
2180         :let postscr_display=1
2182 If you are working with Ghostscript, you can include highlighting of
2183 Ghostscript specific language features by defining the variable
2184 postscr_ghostscript as follows: >
2186         :let postscr_ghostscript=1
2188 PostScript is a large language, with many predefined elements.  While it
2189 useful to have all these elements highlighted, on slower machines this can
2190 cause Vim to slow down.  In an attempt to be machine friendly font names and
2191 character encodings are not highlighted by default.  Unless you are working
2192 explicitly with either of these this should be ok.  If you want them to be
2193 highlighted you should set one or both of the following variables: >
2195         :let postscr_fonts=1
2196         :let postscr_encodings=1
2198 There is a stylistic option to the highlighting of and, or, and not.  In
2199 PostScript the function of these operators depends on the types of their
2200 operands - if the operands are booleans then they are the logical operators,
2201 if they are integers then they are binary operators.  As binary and logical
2202 operators can be highlighted differently they have to be highlighted one way
2203 or the other.  By default they are treated as logical operators.  They can be
2204 highlighted as binary operators by defining the variable
2205 postscr_andornot_binary as follows: >
2207         :let postscr_andornot_binary=1
2210                         *ptcap.vim* *ft-printcap-syntax*
2211 PRINTCAP + TERMCAP      *ft-ptcap-syntax* *ft-termcap-syntax*
2213 This syntax file applies to the printcap and termcap databases.
2215 In order for Vim to recognize printcap/termcap files that do not match
2216 the patterns *printcap*, or *termcap*, you must put additional patterns
2217 appropriate to your system in your |myfiletypefile| file.  For these
2218 patterns, you must set the variable "b:ptcap_type" to either "print" or
2219 "term", and then the 'filetype' option to ptcap.
2221 For example, to make Vim identify all files in /etc/termcaps/ as termcap
2222 files, add the following: >
2224    :au BufNewFile,BufRead /etc/termcaps/* let b:ptcap_type = "term" |
2225                                        \ set filetype=ptcap
2227 If you notice highlighting errors while scrolling backwards, which
2228 are fixed when redrawing with CTRL-L, try setting the "ptcap_minlines"
2229 internal variable to a larger number: >
2231    :let ptcap_minlines = 50
2233 (The default is 20 lines.)
2236 PROGRESS                                *progress.vim* *ft-progress-syntax*
2238 Files matching "*.w" could be Progress or cweb.  If the automatic detection
2239 doesn't work for you, or you don't edit cweb at all, use this in your
2240 startup vimrc: >
2241    :let filetype_w = "progress"
2242 The same happens for "*.i", which could be assembly, and "*.p", which could be
2243 Pascal.  Use this if you don't use assembly and Pascal: >
2244    :let filetype_i = "progress"
2245    :let filetype_p = "progress"
2248 PYTHON                                          *python.vim* *ft-python-syntax*
2250 There are four options to control Python syntax highlighting.
2252 For highlighted numbers: >
2253         :let python_highlight_numbers = 1
2255 For highlighted builtin functions: >
2256         :let python_highlight_builtins = 1
2258 For highlighted standard exceptions: >
2259         :let python_highlight_exceptions = 1
2261 For highlighted trailing whitespace and mix of spaces and tabs:
2262         :let python_highlight_space_errors = 1
2264 If you want all possible Python highlighting (the same as setting the
2265 preceding three options): >
2266         :let python_highlight_all = 1
2269 QUAKE                                           *quake.vim* *ft-quake-syntax*
2271 The Quake syntax definition should work for most any FPS (First Person
2272 Shooter) based on one of the Quake engines.  However, the command names vary
2273 a bit between the three games (Quake, Quake 2, and Quake 3 Arena) so the
2274 syntax definition checks for the existence of three global variables to allow
2275 users to specify what commands are legal in their files.  The three variables
2276 can be set for the following effects:
2278 set to highlight commands only available in Quake: >
2279         :let quake_is_quake1 = 1
2281 set to highlight commands only available in Quake 2: >
2282         :let quake_is_quake2 = 1
2284 set to highlight commands only available in Quake 3 Arena: >
2285         :let quake_is_quake3 = 1
2287 Any combination of these three variables is legal, but might highlight more
2288 commands than are actually available to you by the game.
2291 READLINE                                *readline.vim* *ft-readline-syntax*
2293 The readline library is primarily used by the BASH shell, which adds quite a
2294 few commands and options to the ones already available.  To highlight these
2295 items as well you can add the following to your |vimrc| or just type it in the
2296 command line before loading a file with the readline syntax: >
2297         let readline_has_bash = 1
2299 This will add highlighting for the commands that BASH (version 2.05a and
2300 later, and part earlier) adds.
2303 REXX                                            *rexx.vim* *ft-rexx-syntax*
2305 If you notice highlighting errors while scrolling backwards, which are fixed
2306 when redrawing with CTRL-L, try setting the "rexx_minlines" internal variable
2307 to a larger number: >
2308         :let rexx_minlines = 50
2309 This will make the syntax synchronization start 50 lines before the first
2310 displayed line.  The default value is 10.  The disadvantage of using a larger
2311 number is that redrawing can become slow.
2314 RUBY                                            *ruby.vim* *ft-ruby-syntax*
2316 There are a number of options to the Ruby syntax highlighting.
2318 By default, the "end" keyword is colorized according to the opening statement
2319 of the block it closes.  While useful, this feature can be expensive; if you
2320 experience slow redrawing (or you are on a terminal with poor color support)
2321 you may want to turn it off by defining the "ruby_no_expensive" variable: >
2323         :let ruby_no_expensive = 1
2325 In this case the same color will be used for all control keywords.
2327 If you do want this feature enabled, but notice highlighting errors while
2328 scrolling backwards, which are fixed when redrawing with CTRL-L, try setting
2329 the "ruby_minlines" variable to a value larger than 50: >
2331         :let ruby_minlines = 100
2333 Ideally, this value should be a number of lines large enough to embrace your
2334 largest class or module.
2336 Highlighting of special identifiers can be disabled by removing the
2337 rubyIdentifier highlighting: >
2339         :hi link rubyIdentifier NONE
2341 This will prevent highlighting of special identifiers like "ConstantName",
2342 "$global_var", "@@class_var", "@instance_var", "| block_param |", and
2343 ":symbol".
2345 Significant methods of Kernel, Module and Object are highlighted by default.
2346 This can be disabled by defining "ruby_no_special_methods": >
2348         :let ruby_no_special_methods = 1
2350 This will prevent highlighting of important methods such as "require", "attr",
2351 "private", "raise" and "proc".
2353 Ruby operators can be highlighted. This is enabled by defining
2354 "ruby_operators": >
2356         :let ruby_operators = 1
2358 Whitespace errors can be highlighted by defining "ruby_space_errors": >
2360         :let ruby_space_errors = 1
2362 This will highlight trailing whitespace and tabs preceded by a space character
2363 as errors.  This can be refined by defining "ruby_no_trail_space_error" and
2364 "ruby_no_tab_space_error" which will ignore trailing whitespace and tabs after
2365 spaces respectively.
2367 Folding can be enabled by defining "ruby_fold": >
2369         :let ruby_fold = 1
2371 This will set the 'foldmethod' option to "syntax" and allow folding of
2372 classes, modules, methods, code blocks, heredocs and comments.
2374 Folding of multiline comments can be disabled by defining
2375 "ruby_no_comment_fold": >
2377         :let ruby_no_comment_fold = 1
2380 SCHEME                                          *scheme.vim* *ft-scheme-syntax*
2382 By default only R5RS keywords are highlighted and properly indented.
2384 MzScheme-specific stuff will be used if b:is_mzscheme or g:is_mzscheme
2385 variables are defined.
2387 Also scheme.vim supports keywords of the Chicken Scheme->C compiler.  Define
2388 b:is_chicken or g:is_chicken, if you need them.
2391 SDL                                             *sdl.vim* *ft-sdl-syntax*
2393 The SDL highlighting probably misses a few keywords, but SDL has so many
2394 of them it's almost impossibly to cope.
2396 The new standard, SDL-2000, specifies that all identifiers are
2397 case-sensitive (which was not so before), and that all keywords can be
2398 used either completely lowercase or completely uppercase.  To have the
2399 highlighting reflect this, you can set the following variable: >
2400         :let sdl_2000=1
2402 This also sets many new keywords.  If you want to disable the old
2403 keywords, which is probably a good idea, use: >
2404         :let SDL_no_96=1
2407 The indentation is probably also incomplete, but right now I am very
2408 satisfied with it for my own projects.
2411 SED                                             *sed.vim* *ft-sed-syntax*
2413 To make tabs stand out from regular blanks (accomplished by using Todo
2414 highlighting on the tabs), define "highlight_sedtabs" by putting >
2416         :let highlight_sedtabs = 1
2418 in the vimrc file.  (This special highlighting only applies for tabs
2419 inside search patterns, replacement texts, addresses or text included
2420 by an Append/Change/Insert command.)  If you enable this option, it is
2421 also a good idea to set the tab width to one character; by doing that,
2422 you can easily count the number of tabs in a string.
2424 Bugs:
2426   The transform command (y) is treated exactly like the substitute
2427   command.  This means that, as far as this syntax file is concerned,
2428   transform accepts the same flags as substitute, which is wrong.
2429   (Transform accepts no flags.)  I tolerate this bug because the
2430   involved commands need very complex treatment (95 patterns, one for
2431   each plausible pattern delimiter).
2434 SGML                                            *sgml.vim* *ft-sgml-syntax*
2436 The coloring scheme for tags in the SGML file works as follows.
2438 The <> of opening tags are colored differently than the </> of a closing tag.
2439 This is on purpose! For opening tags the 'Function' color is used, while for
2440 closing tags the 'Type' color is used (See syntax.vim to check how those are
2441 defined for you)
2443 Known tag names are colored the same way as statements in C.  Unknown tag
2444 names are not colored which makes it easy to spot errors.
2446 Note that the same is true for argument (or attribute) names.  Known attribute
2447 names are colored differently than unknown ones.
2449 Some SGML tags are used to change the rendering of text.  The following tags
2450 are recognized by the sgml.vim syntax coloring file and change the way normal
2451 text is shown: <varname> <emphasis> <command> <function> <literal>
2452 <replaceable> <ulink> and <link>.
2454 If you want to change how such text is rendered, you must redefine the
2455 following syntax groups:
2457     - sgmlBold
2458     - sgmlBoldItalic
2459     - sgmlUnderline
2460     - sgmlItalic
2461     - sgmlLink for links
2463 To make this redefinition work you must redefine them all and define the
2464 following variable in your vimrc (this is due to the order in which the files
2465 are read during initialization) >
2466    let sgml_my_rendering=1
2468 You can also disable this rendering by adding the following line to your
2469 vimrc file: >
2470    let sgml_no_rendering=1
2472 (Adapted from the html.vim help text by Claudio Fleiner <claudio@fleiner.com>)
2475 SH              *sh.vim* *ft-sh-syntax* *ft-bash-syntax* *ft-ksh-syntax*
2477 This covers the "normal" Unix (Bourne) sh, bash and the Korn shell.
2479 Vim attempts to determine which shell type is in use by specifying that
2480 various filenames are of specific types: >
2482     ksh : .kshrc* *.ksh
2483     bash: .bashrc* bashrc bash.bashrc .bash_profile* *.bash
2485 If none of these cases pertain, then the first line of the file is examined
2486 (ex. /bin/sh  /bin/ksh  /bin/bash).  If the first line specifies a shelltype,
2487 then that shelltype is used.  However some files (ex. .profile) are known to
2488 be shell files but the type is not apparent.  Furthermore, on many systems
2489 sh is symbolically linked to "bash" (Linux, Windows+cygwin) or "ksh" (Posix).
2491 One may specify a global default by instantiating one of the following three
2492 variables in your <.vimrc>:
2494     ksh: >
2495         let g:is_kornshell = 1
2496 <   posix: (using this is the same as setting is_kornshell to 1) >
2497         let g:is_posix     = 1
2498 <   bash: >
2499         let g:is_bash      = 1
2500 <   sh: (default) Bourne shell >
2501         let g:is_sh        = 1
2503 If there's no "#! ..." line, and the user hasn't availed himself/herself of a
2504 default sh.vim syntax setting as just shown, then syntax/sh.vim will assume
2505 the Bourne shell syntax.  No need to quote RFCs or market penetration
2506 statistics in error reports, please -- just select the default version of the
2507 sh your system uses in your <.vimrc>.
2509 The syntax/sh.vim file provides several levels of syntax-based folding: >
2511         let g:sh_fold_enabled= 0     (default, no syntax folding)
2512         let g:sh_fold_enabled= 1     (enable function folding)
2513         let g:sh_fold_enabled= 2     (enable heredoc folding)
2514         let g:sh_fold_enabled= 4     (enable if/do/for folding)
2516 then various syntax items (HereDocuments and function bodies) become
2517 syntax-foldable (see |:syn-fold|).  You also may add these together
2518 to get multiple types of folding: >
2520         let g:sh_fold_enabled= 3     (enables function and heredoc folding)
2522 If you notice highlighting errors while scrolling backwards which are fixed
2523 when one redraws with CTRL-L, try setting the "sh_minlines" internal variable
2524 to a larger number.  Example: >
2526         let sh_minlines = 500
2528 This will make syntax synchronization start 500 lines before the first
2529 displayed line.  The default value is 200.  The disadvantage of using a larger
2530 number is that redrawing can become slow.
2532 If you don't have much to synchronize on, displaying can be very slow.  To
2533 reduce this, the "sh_maxlines" internal variable can be set.  Example: >
2535         let sh_maxlines = 100
2537 The default is to use the twice sh_minlines.  Set it to a smaller number to
2538 speed up displaying.  The disadvantage is that highlight errors may appear.
2541 SPEEDUP (AspenTech plant simulator)             *spup.vim* *ft-spup-syntax*
2543 The Speedup syntax file has some options:
2545 - strict_subsections : If this variable is defined, only keywords for
2546   sections and subsections will be highlighted as statements but not
2547   other keywords (like WITHIN in the OPERATION section).
2549 - highlight_types : Definition of this variable causes stream types
2550   like temperature or pressure to be highlighted as Type, not as a
2551   plain Identifier.  Included are the types that are usually found in
2552   the DECLARE section; if you defined own types, you have to include
2553   them in the syntax file.
2555 - oneline_comments : this value ranges from 1 to 3 and determines the
2556   highlighting of # style comments.
2558   oneline_comments = 1 : allow normal Speedup code after an even
2559   number of #s.
2561   oneline_comments = 2 : show code starting with the second # as
2562   error.  This is the default setting.
2564   oneline_comments = 3 : show the whole line as error if it contains
2565   more than one #.
2567 Since especially OPERATION sections tend to become very large due to
2568 PRESETting variables, syncing may be critical.  If your computer is
2569 fast enough, you can increase minlines and/or maxlines near the end of
2570 the syntax file.
2573 SQL                                             *sql.vim* *ft-sql-syntax*
2574                                 *sqlinformix.vim* *ft-sqlinformix-syntax*
2575                                 *sqlanywhere.vim* *ft-sqlanywhere-syntax*
2577 While there is an ANSI standard for SQL, most database engines add their own
2578 custom extensions.  Vim currently supports the Oracle and Informix dialects of
2579 SQL.  Vim assumes "*.sql" files are Oracle SQL by default.
2581 Vim currently has SQL support for a variety of different vendors via syntax
2582 scripts.  You can change Vim's default from Oracle to any of the current SQL
2583 supported types.  You can also easily alter the SQL dialect being used on a
2584 buffer by buffer basis.
2586 For more detailed instructions see |ft_sql.txt|.
2589 TCSH                                            *tcsh.vim* *ft-tcsh-syntax*
2591 This covers the shell named "tcsh".  It is a superset of csh.  See |csh.vim|
2592 for how the filetype is detected.
2594 Tcsh does not allow \" in strings unless the "backslash_quote" shell variable
2595 is set.  If you want VIM to assume that no backslash quote constructs exist add
2596 this line to your .vimrc: >
2598         :let tcsh_backslash_quote = 0
2600 If you notice highlighting errors while scrolling backwards, which are fixed
2601 when redrawing with CTRL-L, try setting the "tcsh_minlines" internal variable
2602 to a larger number: >
2604         :let tcsh_minlines = 1000
2606 This will make the syntax synchronization start 1000 lines before the first
2607 displayed line.  If you set "tcsh_minlines" to "fromstart", then
2608 synchronization is done from the start of the file. The default value for
2609 tcsh_minlines is 100.  The disadvantage of using a larger number is that
2610 redrawing can become slow.
2613 TEX                                             *tex.vim* *ft-tex-syntax*
2615                                                                 *tex-folding*
2616  Tex: Want Syntax Folding? ~
2618 As of version 28 of <syntax/tex.vim>, syntax-based folding of parts, chapters,
2619 sections, subsections, etc are supported.  Put >
2620         let g:tex_fold_enabled=1
2621 in your <.vimrc>, and :set fdm=syntax.  I suggest doing the latter via a
2622 modeline at the end of your LaTeX file: >
2623         % vim: fdm=syntax
2625                                                                 *tex-nospell*
2626  Tex: Don't Want Spell Checking In Comments? ~
2628 Some folks like to include things like source code in comments and so would
2629 prefer that spell checking be disabled in comments in LaTeX files.  To do
2630 this, put the following in your <.vimrc>: >
2631       let g:tex_comment_nospell= 1
2633                                                                 *tex-verb*
2634  Tex: Want Spell Checking in Verbatim Zones?~
2636 Often verbatim regions are used for things like source code; seldom does
2637 one want source code spell-checked.  However, for those of you who do
2638 want your verbatim zones spell-checked, put the following in your <.vimrc>: >
2639         let g:tex_verbspell= 1
2641                                                                 *tex-runon*
2642  Tex: Run-on Comments or MathZones ~
2644 The <syntax/tex.vim> highlighting supports TeX, LaTeX, and some AmsTeX.  The
2645 highlighting supports three primary zones/regions: normal, texZone, and
2646 texMathZone.  Although considerable effort has been made to have these zones
2647 terminate properly, zones delineated by $..$ and $$..$$ cannot be synchronized
2648 as there's no difference between start and end patterns.  Consequently, a
2649 special "TeX comment" has been provided >
2650         %stopzone
2651 which will forcibly terminate the highlighting of either a texZone or a
2652 texMathZone.
2654                                                                 *tex-slow*
2655  Tex: Slow Syntax Highlighting? ~
2657 If you have a slow computer, you may wish to reduce the values for >
2658         :syn sync maxlines=200
2659         :syn sync minlines=50
2660 (especially the latter).  If your computer is fast, you may wish to
2661 increase them.  This primarily affects synchronizing (i.e. just what group,
2662 if any, is the text at the top of the screen supposed to be in?).
2664                                             *tex-morecommands* *tex-package*
2665  Tex: Want To Highlight More Commands? ~
2667 LaTeX is a programmable language, and so there are thousands of packages full
2668 of specialized LaTeX commands, syntax, and fonts.  If you're using such a
2669 package you'll often wish that the distributed syntax/tex.vim would support
2670 it.  However, clearly this is impractical.  So please consider using the
2671 techniques in |mysyntaxfile-add| to extend or modify the highlighting provided
2672 by syntax/tex.vim.
2674                                                                 *tex-error*
2675  Tex: Excessive Error Highlighting? ~
2677 The <tex.vim> supports lexical error checking of various sorts.  Thus,
2678 although the error checking is ofttimes very useful, it can indicate
2679 errors where none actually are.  If this proves to be a problem for you,
2680 you may put in your <.vimrc> the following statement: >
2681         let tex_no_error=1
2682 and all error checking by <syntax/tex.vim> will be suppressed.
2684                                                                 *tex-math*
2685  Tex: Need a new Math Group? ~
2687 If you want to include a new math group in your LaTeX, the following
2688 code shows you an example as to how you might do so: >
2689         call TexNewMathZone(sfx,mathzone,starform)
2690 You'll want to provide the new math group with a unique suffix
2691 (currently, A-L and V-Z are taken by <syntax/tex.vim> itself).
2692 As an example, consider how eqnarray is set up by <syntax/tex.vim>: >
2693         call TexNewMathZone("D","eqnarray",1)
2694 You'll need to change "mathzone" to the name of your new math group,
2695 and then to the call to it in .vim/after/syntax/tex.vim.
2696 The "starform" variable, if true, implies that your new math group
2697 has a starred form (ie. eqnarray*).
2699                                                                 *tex-style*
2700  Tex: Starting a New Style? ~
2702 One may use "\makeatletter" in *.tex files, thereby making the use of "@" in
2703 commands available.  However, since the *.tex file doesn't have one of the
2704 following suffices: sty cls clo dtx ltx, the syntax highlighting will flag
2705 such use of @ as an error.  To solve this: >
2707         :let b:tex_stylish = 1
2708         :set ft=tex
2710 Putting "let g:tex_stylish=1" into your <.vimrc> will make <syntax/tex.vim>
2711 always accept such use of @.
2713                                         *tex-cchar* *tex-cole* *tex-conceal*
2714  Tex: Taking Advantage of Conceal Mode~
2716 If you have |'conceallevel'| set to 2 and if your encoding is utf-8, then a
2717 number of character sequences can be translated into appropriate utf-8 glyphs,
2718 including various accented characters, Greek characters in MathZones, and
2719 superscripts and subscripts in MathZones.  Not all characters can be made into
2720 superscripts or subscripts; the constraint is due to what utf-8 supports.
2721 In fact, only a few characters are supported as subscripts.
2723 One way to use this is to have vertically split windows (see |CTRL-W_v|); one
2724 with |'conceallevel'| at 0 and the other at 2; and both using |'scrollbind'|.
2726                                                         *g:tex_conceal*
2727  Tex: Selective Conceal Mode~
2729 You may selectively use conceal mode by setting g:tex_conceal in your
2730 <.vimrc>.  By default it is set to "admgs" to enable conceal for the
2731 following sets of characters: >
2733         a = accents/ligatures
2734         d = delimiters
2735         m = math symbols
2736         g = Greek
2737         s = superscripts/subscripts
2739 By leaving one or more of these out, the associated conceal-character
2740 substitution will not be made.
2743 TF                                              *tf.vim* *ft-tf-syntax*
2745 There is one option for the tf syntax highlighting.
2747 For syncing, minlines defaults to 100.  If you prefer another value, you can
2748 set "tf_minlines" to the value you desire.  Example: >
2750         :let tf_minlines = your choice
2753 VIM                     *vim.vim*               *ft-vim-syntax*
2754                         *g:vimsyn_minlines*     *g:vimsyn_maxlines*
2755 There is a trade-off between more accurate syntax highlighting versus screen
2756 updating speed.  To improve accuracy, you may wish to increase the
2757 g:vimsyn_minlines variable.  The g:vimsyn_maxlines variable may be used to
2758 improve screen updating rates (see |:syn-sync| for more on this). >
2760         g:vimsyn_minlines : used to set synchronization minlines
2761         g:vimsyn_maxlines : used to set synchronization maxlines
2763         (g:vim_minlines and g:vim_maxlines are deprecated variants of
2764         these two options)
2766                                                 *g:vimsyn_embed*
2767 The g:vimsyn_embed option allows users to select what, if any, types of
2768 embedded script highlighting they wish to have. >
2770    g:vimsyn_embed == 0   : don't embed any scripts
2771    g:vimsyn_embed =~ 'm' : embed mzscheme (but only if vim supports it)
2772    g:vimsyn_embed =~ 'p' : embed perl     (but only if vim supports it)
2773    g:vimsyn_embed =~ 'P' : embed python   (but only if vim supports it)
2774    g:vimsyn_embed =~ 'r' : embed ruby     (but only if vim supports it)
2775    g:vimsyn_embed =~ 't' : embed tcl      (but only if vim supports it)
2777 By default, g:vimsyn_embed is "mpPr"; ie. syntax/vim.vim will support
2778 highlighting mzscheme, perl, python, and ruby by default.  Vim's has("tcl")
2779 test appears to hang vim when tcl is not truly available.  Thus, by default,
2780 tcl is not supported for embedding (but those of you who like tcl embedded in
2781 their vim syntax highlighting can simply include it in the g:vimembedscript
2782 option).
2783                                                 *g:vimsyn_folding*
2785 Some folding is now supported with syntax/vim.vim: >
2787    g:vimsyn_folding == 0 or doesn't exist: no syntax-based folding
2788    g:vimsyn_folding =~ 'a' : augroups
2789    g:vimsyn_folding =~ 'f' : fold functions
2790    g:vimsyn_folding =~ 'm' : fold mzscheme script
2791    g:vimsyn_folding =~ 'p' : fold perl     script
2792    g:vimsyn_folding =~ 'P' : fold python   script
2793    g:vimsyn_folding =~ 'r' : fold ruby     script
2794    g:vimsyn_folding =~ 't' : fold tcl      script
2796                                                         *g:vimsyn_noerror*
2797 Not all error highlighting that syntax/vim.vim does may be correct; VimL is a
2798 difficult language to highlight correctly.  A way to suppress error
2799 highlighting is to put the following line in your |vimrc|: >
2801         let g:vimsyn_noerror = 1
2805 XF86CONFIG                              *xf86conf.vim* *ft-xf86conf-syntax*
2807 The syntax of XF86Config file differs in XFree86 v3.x and v4.x.  Both
2808 variants are supported.  Automatic detection is used, but is far from perfect.
2809 You may need to specify the version manually.  Set the variable
2810 xf86conf_xfree86_version to 3 or 4 according to your XFree86 version in
2811 your .vimrc.  Example: >
2812         :let xf86conf_xfree86_version=3
2813 When using a mix of versions, set the b:xf86conf_xfree86_version variable.
2815 Note that spaces and underscores in option names are not supported.  Use
2816 "SyncOnGreen" instead of "__s yn con gr_e_e_n" if you want the option name
2817 highlighted.
2820 XML                                             *xml.vim* *ft-xml-syntax*
2822 Xml namespaces are highlighted by default.  This can be inhibited by
2823 setting a global variable: >
2825         :let g:xml_namespace_transparent=1
2827                                                         *xml-folding*
2828 The xml syntax file provides syntax |folding| (see |:syn-fold|) between
2829 start and end tags.  This can be turned on by >
2831         :let g:xml_syntax_folding = 1
2832         :set foldmethod=syntax
2834 Note: syntax folding might slow down syntax highlighting significantly,
2835 especially for large files.
2838 X Pixmaps (XPM)                                 *xpm.vim* *ft-xpm-syntax*
2840 xpm.vim creates its syntax items dynamically based upon the contents of the
2841 XPM file.  Thus if you make changes e.g. in the color specification strings,
2842 you have to source it again e.g. with ":set syn=xpm".
2844 To copy a pixel with one of the colors, yank a "pixel" with "yl" and insert it
2845 somewhere else with "P".
2847 Do you want to draw with the mouse?  Try the following: >
2848    :function! GetPixel()
2849    :   let c = getline(".")[col(".") - 1]
2850    :   echo c
2851    :   exe "noremap <LeftMouse> <LeftMouse>r".c
2852    :   exe "noremap <LeftDrag>  <LeftMouse>r".c
2853    :endfunction
2854    :noremap <RightMouse> <LeftMouse>:call GetPixel()<CR>
2855    :set guicursor=n:hor20          " to see the color beneath the cursor
2856 This turns the right button into a pipette and the left button into a pen.
2857 It will work with XPM files that have one character per pixel only and you
2858 must not click outside of the pixel strings, but feel free to improve it.
2860 It will look much better with a font in a quadratic cell size, e.g. for X: >
2861         :set guifont=-*-clean-medium-r-*-*-8-*-*-*-*-80-*
2863 ==============================================================================
2864 5. Defining a syntax                                    *:syn-define* *E410*
2866 Vim understands three types of syntax items:
2868 1. Keyword
2869    It can only contain keyword characters, according to the 'iskeyword'
2870    option.  It cannot contain other syntax items.  It will only match with a
2871    complete word (there are no keyword characters before or after the match).
2872    The keyword "if" would match in "if(a=b)", but not in "ifdef x", because
2873    "(" is not a keyword character and "d" is.
2875 2. Match
2876    This is a match with a single regexp pattern.
2878 3. Region
2879    This starts at a match of the "start" regexp pattern and ends with a match
2880    with the "end" regexp pattern.  Any other text can appear in between.  A
2881    "skip" regexp pattern can be used to avoid matching the "end" pattern.
2883 Several syntax ITEMs can be put into one syntax GROUP.  For a syntax group
2884 you can give highlighting attributes.  For example, you could have an item
2885 to define a "/* .. */" comment and another one that defines a "// .." comment,
2886 and put them both in the "Comment" group.  You can then specify that a
2887 "Comment" will be in bold font and have a blue color.  You are free to make
2888 one highlight group for one syntax item, or put all items into one group.
2889 This depends on how you want to specify your highlighting attributes.  Putting
2890 each item in its own group results in having to specify the highlighting
2891 for a lot of groups.
2893 Note that a syntax group and a highlight group are similar.  For a highlight
2894 group you will have given highlight attributes.  These attributes will be used
2895 for the syntax group with the same name.
2897 In case more than one item matches at the same position, the one that was
2898 defined LAST wins.  Thus you can override previously defined syntax items by
2899 using an item that matches the same text.  But a keyword always goes before a
2900 match or region.  And a keyword with matching case always goes before a
2901 keyword with ignoring case.
2904 PRIORITY                                                *:syn-priority*
2906 When several syntax items may match, these rules are used:
2908 1. When multiple Match or Region items start in the same position, the item
2909    defined last has priority.
2910 2. A Keyword has priority over Match and Region items.
2911 3. An item that starts in an earlier position has priority over items that
2912    start in later positions.
2915 DEFINING CASE                                           *:syn-case* *E390*
2917 :sy[ntax] case [match | ignore]
2918         This defines if the following ":syntax" commands will work with
2919         matching case, when using "match", or with ignoring case, when using
2920         "ignore".  Note that any items before this are not affected, and all
2921         items until the next ":syntax case" command are affected.
2924 SPELL CHECKING                                          *:syn-spell*
2926 :sy[ntax] spell [toplevel | notoplevel | default]
2927         This defines where spell checking is to be done for text that is not
2928         in a syntax item:
2930         toplevel:       Text is spell checked.
2931         notoplevel:     Text is not spell checked.
2932         default:        When there is a @Spell cluster no spell checking.
2934         For text in syntax items use the @Spell and @NoSpell clusters
2935         |spell-syntax|.  When there is no @Spell and no @NoSpell cluster then
2936         spell checking is done for "default" and "toplevel".
2938         To activate spell checking the 'spell' option must be set.
2941 DEFINING KEYWORDS                                       *:syn-keyword*
2943 :sy[ntax] keyword {group-name} [{options}] {keyword} .. [{options}]
2945         This defines a number of keywords.
2947         {group-name}    Is a syntax group name such as "Comment".
2948         [{options}]     See |:syn-arguments| below.
2949         {keyword} ..    Is a list of keywords which are part of this group.
2951         Example: >
2952   :syntax keyword   Type   int long char
2954         The {options} can be given anywhere in the line.  They will apply to
2955         all keywords given, also for options that come after a keyword.
2956         These examples do exactly the same: >
2957   :syntax keyword   Type   contained int long char
2958   :syntax keyword   Type   int long contained char
2959   :syntax keyword   Type   int long char contained
2960 <                                                               *E789*
2961         When you have a keyword with an optional tail, like Ex commands in
2962         Vim, you can put the optional characters inside [], to define all the
2963         variations at once: >
2964   :syntax keyword   vimCommand   ab[breviate] n[ext]
2966         Don't forget that a keyword can only be recognized if all the
2967         characters are included in the 'iskeyword' option.  If one character
2968         isn't, the keyword will never be recognized.
2969         Multi-byte characters can also be used.  These do not have to be in
2970         'iskeyword'.
2972         A keyword always has higher priority than a match or region, the
2973         keyword is used if more than one item matches.  Keywords do not nest
2974         and a keyword can't contain anything else.
2976         Note that when you have a keyword that is the same as an option (even
2977         one that isn't allowed here), you can not use it.  Use a match
2978         instead.
2980         The maximum length of a keyword is 80 characters.
2982         The same keyword can be defined multiple times, when its containment
2983         differs.  For example, you can define the keyword once not contained
2984         and use one highlight group, and once contained, and use a different
2985         highlight group.  Example: >
2986   :syn keyword vimCommand tag
2987   :syn keyword vimSetting contained tag
2988 <       When finding "tag" outside of any syntax item, the "vimCommand"
2989         highlight group is used.  When finding "tag" in a syntax item that
2990         contains "vimSetting", the "vimSetting" group is used.
2993 DEFINING MATCHES                                        *:syn-match*
2995 :sy[ntax] match {group-name} [{options}] [excludenl] {pattern} [{options}]
2997         This defines one match.
2999         {group-name}            A syntax group name such as "Comment".
3000         [{options}]             See |:syn-arguments| below.
3001         [excludenl]             Don't make a pattern with the end-of-line "$"
3002                                 extend a containing match or region.  Must be
3003                                 given before the pattern. |:syn-excludenl|
3004         {pattern}               The search pattern that defines the match.
3005                                 See |:syn-pattern| below.
3006                                 Note that the pattern may match more than one
3007                                 line, which makes the match depend on where
3008                                 Vim starts searching for the pattern.  You
3009                                 need to make sure syncing takes care of this.
3011         Example (match a character constant): >
3012   :syntax match Character /'.'/hs=s+1,he=e-1
3015 DEFINING REGIONS        *:syn-region* *:syn-start* *:syn-skip* *:syn-end*
3016                                                         *E398* *E399*
3017 :sy[ntax] region {group-name} [{options}]
3018                 [matchgroup={group-name}]
3019                 [keepend]
3020                 [extend]
3021                 [excludenl]
3022                 start={start_pattern} ..
3023                 [skip={skip_pattern}]
3024                 end={end_pattern} ..
3025                 [{options}]
3027         This defines one region.  It may span several lines.
3029         {group-name}            A syntax group name such as "Comment".
3030         [{options}]             See |:syn-arguments| below.
3031         [matchgroup={group-name}]  The syntax group to use for the following
3032                                 start or end pattern matches only.  Not used
3033                                 for the text in between the matched start and
3034                                 end patterns.  Use NONE to reset to not using
3035                                 a different group for the start or end match.
3036                                 See |:syn-matchgroup|.
3037         keepend                 Don't allow contained matches to go past a
3038                                 match with the end pattern.  See
3039                                 |:syn-keepend|.
3040         extend                  Override a "keepend" for an item this region
3041                                 is contained in.  See |:syn-extend|.
3042         excludenl               Don't make a pattern with the end-of-line "$"
3043                                 extend a containing match or item.  Only
3044                                 useful for end patterns.  Must be given before
3045                                 the patterns it applies to. |:syn-excludenl|
3046         start={start_pattern}   The search pattern that defines the start of
3047                                 the region.  See |:syn-pattern| below.
3048         skip={skip_pattern}     The search pattern that defines text inside
3049                                 the region where not to look for the end
3050                                 pattern.  See |:syn-pattern| below.
3051         end={end_pattern}       The search pattern that defines the end of
3052                                 the region.  See |:syn-pattern| below.
3054         Example: >
3055   :syntax region String   start=+"+  skip=+\\"+  end=+"+
3057         The start/skip/end patterns and the options can be given in any order.
3058         There can be zero or one skip pattern.  There must be one or more
3059         start and end patterns.  This means that you can omit the skip
3060         pattern, but you must give at least one start and one end pattern.  It
3061         is allowed to have white space before and after the equal sign
3062         (although it mostly looks better without white space).
3064         When more than one start pattern is given, a match with one of these
3065         is sufficient.  This means there is an OR relation between the start
3066         patterns.  The last one that matches is used.  The same is true for
3067         the end patterns.
3069         The search for the end pattern starts right after the start pattern.
3070         Offsets are not used for this.  This implies that the match for the
3071         end pattern will never overlap with the start pattern.
3073         The skip and end pattern can match across line breaks, but since the
3074         search for the pattern can start in any line it often does not do what
3075         you want.  The skip pattern doesn't avoid a match of an end pattern in
3076         the next line.  Use single-line patterns to avoid trouble.
3078         Note: The decision to start a region is only based on a matching start
3079         pattern.  There is no check for a matching end pattern.  This does NOT
3080         work: >
3081                 :syn region First  start="("  end=":"
3082                 :syn region Second start="("  end=";"
3083 <       The Second always matches before the First (last defined pattern has
3084         higher priority).  The Second region then continues until the next
3085         ';', no matter if there is a ':' before it.  Using a match does work: >
3086                 :syn match First  "(\_.\{-}:"
3087                 :syn match Second "(\_.\{-};"
3088 <       This pattern matches any character or line break with "\_." and
3089         repeats that with "\{-}" (repeat as few as possible).
3091                                                         *:syn-keepend*
3092         By default, a contained match can obscure a match for the end pattern.
3093         This is useful for nesting.  For example, a region that starts with
3094         "{" and ends with "}", can contain another region.  An encountered "}"
3095         will then end the contained region, but not the outer region:
3096             {           starts outer "{}" region
3097                 {       starts contained "{}" region
3098                 }       ends contained "{}" region
3099             }           ends outer "{} region
3100         If you don't want this, the "keepend" argument will make the matching
3101         of an end pattern of the outer region also end any contained item.
3102         This makes it impossible to nest the same region, but allows for
3103         contained items to highlight parts of the end pattern, without causing
3104         that to skip the match with the end pattern.  Example: >
3105   :syn match  vimComment +"[^"]\+$+
3106   :syn region vimCommand start="set" end="$" contains=vimComment keepend
3107 <       The "keepend" makes the vimCommand always end at the end of the line,
3108         even though the contained vimComment includes a match with the <EOL>.
3110         When "keepend" is not used, a match with an end pattern is retried
3111         after each contained match.  When "keepend" is included, the first
3112         encountered match with an end pattern is used, truncating any
3113         contained matches.
3114                                                         *:syn-extend*
3115         The "keepend" behavior can be changed by using the "extend" argument.
3116         When an item with "extend" is contained in an item that uses
3117         "keepend", the "keepend" is ignored and the containing region will be
3118         extended.
3119         This can be used to have some contained items extend a region while
3120         others don't.  Example: >
3122    :syn region htmlRef start=+<a>+ end=+</a>+ keepend contains=htmlItem,htmlScript
3123    :syn match htmlItem +<[^>]*>+ contained
3124    :syn region htmlScript start=+<script+ end=+</script[^>]*>+ contained extend
3126 <       Here the htmlItem item does not make the htmlRef item continue
3127         further, it is only used to highlight the <> items.  The htmlScript
3128         item does extend the htmlRef item.
3130         Another example: >
3131    :syn region xmlFold start="<a>" end="</a>" fold transparent keepend extend
3132 <       This defines a region with "keepend", so that its end cannot be
3133         changed by contained items, like when the "</a>" is matched to
3134         highlight it differently.  But when the xmlFold region is nested (it
3135         includes itself), the "extend" applies, so that the "</a>" of a nested
3136         region only ends that region, and not the one it is contained in.
3138                                                         *:syn-excludenl*
3139         When a pattern for a match or end pattern of a region includes a '$'
3140         to match the end-of-line, it will make a region item that it is
3141         contained in continue on the next line.  For example, a match with
3142         "\\$" (backslash at the end of the line) can make a region continue
3143         that would normally stop at the end of the line.  This is the default
3144         behavior.  If this is not wanted, there are two ways to avoid it:
3145         1. Use "keepend" for the containing item.  This will keep all
3146            contained matches from extending the match or region.  It can be
3147            used when all contained items must not extend the containing item.
3148         2. Use "excludenl" in the contained item.  This will keep that match
3149            from extending the containing match or region.  It can be used if
3150            only some contained items must not extend the containing item.
3151            "excludenl" must be given before the pattern it applies to.
3153                                                         *:syn-matchgroup*
3154         "matchgroup" can be used to highlight the start and/or end pattern
3155         differently than the body of the region.  Example: >
3156   :syntax region String matchgroup=Quote start=+"+  skip=+\\"+  end=+"+
3157 <       This will highlight the quotes with the "Quote" group, and the text in
3158         between with the "String" group.
3159         The "matchgroup" is used for all start and end patterns that follow,
3160         until the next "matchgroup".  Use "matchgroup=NONE" to go back to not
3161         using a matchgroup.
3163         In a start or end pattern that is highlighted with "matchgroup" the
3164         contained items of the region are not used.  This can be used to avoid
3165         that a contained item matches in the start or end pattern match.  When
3166         using "transparent", this does not apply to a start or end pattern
3167         match that is highlighted with "matchgroup".
3169         Here is an example, which highlights three levels of parentheses in
3170         different colors: >
3171    :sy region par1 matchgroup=par1 start=/(/ end=/)/ contains=par2
3172    :sy region par2 matchgroup=par2 start=/(/ end=/)/ contains=par3 contained
3173    :sy region par3 matchgroup=par3 start=/(/ end=/)/ contains=par1 contained
3174    :hi par1 ctermfg=red guifg=red
3175    :hi par2 ctermfg=blue guifg=blue
3176    :hi par3 ctermfg=darkgreen guifg=darkgreen
3178 ==============================================================================
3179 6. :syntax arguments                                    *:syn-arguments*
3181 The :syntax commands that define syntax items take a number of arguments.
3182 The common ones are explained here.  The arguments may be given in any order
3183 and may be mixed with patterns.
3185 Not all commands accept all arguments.  This table shows which arguments
3186 can not be used for all commands:
3187                                                         *E395*
3188                     contains  oneline   fold  display  extend concealends~
3189 :syntax keyword          -       -       -       -       -      -
3190 :syntax match           yes      -      yes     yes     yes     -
3191 :syntax region          yes     yes     yes     yes     yes    yes
3193 These arguments can be used for all three commands:
3194         conceal
3195         cchar
3196         contained
3197         containedin
3198         nextgroup
3199         transparent
3200         skipwhite
3201         skipnl
3202         skipempty
3204 conceal                                         *conceal* *:syn-conceal*
3206 When the "conceal" argument is given, the item is marked as concealable.
3207 Whether or not it is actually concealed depends on the value of the
3208 'conceallevel' option.  The 'concealcursor' option is used to decide whether
3209 concealable items in the current line are displayed unconcealed to be able to
3210 edit the line.
3212 concealends                                             *:syn-concealends*
3214 When the "concealends" argument is given, the start and end matches of
3215 the region, but not the contents of the region, are marked as concealable.
3216 Whether or not they are actually concealed depends on the setting on the
3217 'conceallevel' option. The ends of a region can only be concealed separately
3218 in this way when they have their own highlighting via "matchgroup"
3220 cchar                                                   *:syn-cchar*
3222 The "cchar" argument defines the character shown in place of the item
3223 when it is concealed (setting "cchar" only makes sense when the conceal
3224 argument is given.) If "cchar" is not set then the default conceal
3225 character defined in the 'listchars' option is used. Example: >
3226    :syntax match Entity "&amp;" conceal cchar=&
3227 See |hl-Conceal| for highlighting.
3229 contained                                               *:syn-contained*
3231 When the "contained" argument is given, this item will not be recognized at
3232 the top level, but only when it is mentioned in the "contains" field of
3233 another match.  Example: >
3234    :syntax keyword Todo    TODO    contained
3235    :syntax match   Comment "//.*"  contains=Todo
3238 display                                                 *:syn-display*
3240 If the "display" argument is given, this item will be skipped when the
3241 detected highlighting will not be displayed.  This will speed up highlighting,
3242 by skipping this item when only finding the syntax state for the text that is
3243 to be displayed.
3245 Generally, you can use "display" for match and region items that meet these
3246 conditions:
3247 - The item does not continue past the end of a line.  Example for C: A region
3248   for a "/*" comment can't contain "display", because it continues on the next
3249   line.
3250 - The item does not contain items that continue past the end of the line or
3251   make it continue on the next line.
3252 - The item does not change the size of any item it is contained in.  Example
3253   for C: A match with "\\$" in a preprocessor match can't have "display",
3254   because it may make that preprocessor match shorter.
3255 - The item does not allow other items to match that didn't match otherwise,
3256   and that item may extend the match too far.  Example for C: A match for a
3257   "//" comment can't use "display", because a "/*" inside that comment would
3258   match then and start a comment which extends past the end of the line.
3260 Examples, for the C language, where "display" can be used:
3261 - match with a number
3262 - match with a label
3265 transparent                                             *:syn-transparent*
3267 If the "transparent" argument is given, this item will not be highlighted
3268 itself, but will take the highlighting of the item it is contained in.  This
3269 is useful for syntax items that don't need any highlighting but are used
3270 only to skip over a part of the text.
3272 The "contains=" argument is also inherited from the item it is contained in,
3273 unless a "contains" argument is given for the transparent item itself.  To
3274 avoid that unwanted items are contained, use "contains=NONE".  Example, which
3275 highlights words in strings, but makes an exception for "vim": >
3276         :syn match myString /'[^']*'/ contains=myWord,myVim
3277         :syn match myWord   /\<[a-z]*\>/ contained
3278         :syn match myVim    /\<vim\>/ transparent contained contains=NONE
3279         :hi link myString String
3280         :hi link myWord   Comment
3281 Since the "myVim" match comes after "myWord" it is the preferred match (last
3282 match in the same position overrules an earlier one).  The "transparent"
3283 argument makes the "myVim" match use the same highlighting as "myString".  But
3284 it does not contain anything.  If the "contains=NONE" argument would be left
3285 out, then "myVim" would use the contains argument from myString and allow
3286 "myWord" to be contained, which will be highlighted as a Constant.  This
3287 happens because a contained match doesn't match inside itself in the same
3288 position, thus the "myVim" match doesn't overrule the "myWord" match here.
3290 When you look at the colored text, it is like looking at layers of contained
3291 items.  The contained item is on top of the item it is contained in, thus you
3292 see the contained item.  When a contained item is transparent, you can look
3293 through, thus you see the item it is contained in.  In a picture:
3295                 look from here
3297             |   |   |   |   |   |
3298             V   V   V   V   V   V
3300                xxxx       yyy           more contained items
3301             ....................        contained item (transparent)
3302         =============================   first item
3304 The 'x', 'y' and '=' represent a highlighted syntax item.  The '.' represent a
3305 transparent group.
3307 What you see is:
3309         =======xxxx=======yyy========
3311 Thus you look through the transparent "....".
3314 oneline                                                 *:syn-oneline*
3316 The "oneline" argument indicates that the region does not cross a line
3317 boundary.  It must match completely in the current line.  However, when the
3318 region has a contained item that does cross a line boundary, it continues on
3319 the next line anyway.  A contained item can be used to recognize a line
3320 continuation pattern.  But the "end" pattern must still match in the first
3321 line, otherwise the region doesn't even start.
3323 When the start pattern includes a "\n" to match an end-of-line, the end
3324 pattern must be found in the same line as where the start pattern ends.  The
3325 end pattern may also include an end-of-line.  Thus the "oneline" argument
3326 means that the end of the start pattern and the start of the end pattern must
3327 be within one line.  This can't be changed by a skip pattern that matches a
3328 line break.
3331 fold                                                    *:syn-fold*
3333 The "fold" argument makes the fold level increase by one for this item.
3334 Example: >
3335    :syn region myFold start="{" end="}" transparent fold
3336    :syn sync fromstart
3337    :set foldmethod=syntax
3338 This will make each {} block form one fold.
3340 The fold will start on the line where the item starts, and end where the item
3341 ends.  If the start and end are within the same line, there is no fold.
3342 The 'foldnestmax' option limits the nesting of syntax folds.
3343 {not available when Vim was compiled without |+folding| feature}
3346                         *:syn-contains* *E405* *E406* *E407* *E408* *E409*
3347 contains={groupname},..
3349 The "contains" argument is followed by a list of syntax group names.  These
3350 groups will be allowed to begin inside the item (they may extend past the
3351 containing group's end).  This allows for recursive nesting of matches and
3352 regions.  If there is no "contains" argument, no groups will be contained in
3353 this item.  The group names do not need to be defined before they can be used
3354 here.
3356 contains=ALL
3357                 If the only item in the contains list is "ALL", then all
3358                 groups will be accepted inside the item.
3360 contains=ALLBUT,{group-name},..
3361                 If the first item in the contains list is "ALLBUT", then all
3362                 groups will be accepted inside the item, except the ones that
3363                 are listed.  Example: >
3364   :syntax region Block start="{" end="}" ... contains=ALLBUT,Function
3366 contains=TOP
3367                 If the first item in the contains list is "TOP", then all
3368                 groups will be accepted that don't have the "contained"
3369                 argument.
3370 contains=TOP,{group-name},..
3371                 Like "TOP", but excluding the groups that are listed.
3373 contains=CONTAINED
3374                 If the first item in the contains list is "CONTAINED", then
3375                 all groups will be accepted that have the "contained"
3376                 argument.
3377 contains=CONTAINED,{group-name},..
3378                 Like "CONTAINED", but excluding the groups that are
3379                 listed.
3382 The {group-name} in the "contains" list can be a pattern.  All group names
3383 that match the pattern will be included (or excluded, if "ALLBUT" is used).
3384 The pattern cannot contain white space or a ','.  Example: >
3385    ... contains=Comment.*,Keyw[0-3]
3386 The matching will be done at moment the syntax command is executed.  Groups
3387 that are defined later will not be matched.  Also, if the current syntax
3388 command defines a new group, it is not matched.  Be careful: When putting
3389 syntax commands in a file you can't rely on groups NOT being defined, because
3390 the file may have been sourced before, and ":syn clear" doesn't remove the
3391 group names.
3393 The contained groups will also match in the start and end patterns of a
3394 region.  If this is not wanted, the "matchgroup" argument can be used
3395 |:syn-matchgroup|.  The "ms=" and "me=" offsets can be used to change the
3396 region where contained items do match.  Note that this may also limit the
3397 area that is highlighted
3400 containedin={groupname}...                              *:syn-containedin*
3402 The "containedin" argument is followed by a list of syntax group names.  The
3403 item will be allowed to begin inside these groups.  This works as if the
3404 containing item has a "contains=" argument that includes this item.
3406 The {groupname}... can be used just like for "contains", as explained above.
3408 This is useful when adding a syntax item afterwards.  An item can be told to
3409 be included inside an already existing item, without changing the definition
3410 of that item.  For example, to highlight a word in a C comment after loading
3411 the C syntax: >
3412         :syn keyword myword HELP containedin=cComment contained
3413 Note that "contained" is also used, to avoid that the item matches at the top
3414 level.
3416 Matches for "containedin" are added to the other places where the item can
3417 appear.  A "contains" argument may also be added as usual.  Don't forget that
3418 keywords never contain another item, thus adding them to "containedin" won't
3419 work.
3422 nextgroup={groupname},..                                *:syn-nextgroup*
3424 The "nextgroup" argument is followed by a list of syntax group names,
3425 separated by commas (just like with "contains", so you can also use patterns).
3427 If the "nextgroup" argument is given, the mentioned syntax groups will be
3428 tried for a match, after the match or region ends.  If none of the groups have
3429 a match, highlighting continues normally.  If there is a match, this group
3430 will be used, even when it is not mentioned in the "contains" field of the
3431 current group.  This is like giving the mentioned group priority over all
3432 other groups.  Example: >
3433    :syntax match  ccFoobar  "Foo.\{-}Bar"  contains=ccFoo
3434    :syntax match  ccFoo     "Foo"           contained nextgroup=ccFiller
3435    :syntax region ccFiller  start="."  matchgroup=ccBar  end="Bar"  contained
3437 This will highlight "Foo" and "Bar" differently, and only when there is a
3438 "Bar" after "Foo".  In the text line below, "f" shows where ccFoo is used for
3439 highlighting, and "bbb" where ccBar is used. >
3441    Foo asdfasd Bar asdf Foo asdf Bar asdf
3442    fff         bbb      fff      bbb
3444 Note the use of ".\{-}" to skip as little as possible until the next Bar.
3445 when ".*" would be used, the "asdf" in between "Bar" and "Foo" would be
3446 highlighted according to the "ccFoobar" group, because the ccFooBar match
3447 would include the first "Foo" and the last "Bar" in the line (see |pattern|).
3450 skipwhite                                               *:syn-skipwhite*
3451 skipnl                                                  *:syn-skipnl*
3452 skipempty                                               *:syn-skipempty*
3454 These arguments are only used in combination with "nextgroup".  They can be
3455 used to allow the next group to match after skipping some text:
3456         skipwhite       skip over space and tab characters
3457         skipnl          skip over the end of a line
3458         skipempty       skip over empty lines (implies a "skipnl")
3460 When "skipwhite" is present, the white space is only skipped if there is no
3461 next group that matches the white space.
3463 When "skipnl" is present, the match with nextgroup may be found in the next
3464 line.  This only happens when the current item ends at the end of the current
3465 line!  When "skipnl" is not present, the nextgroup will only be found after
3466 the current item in the same line.
3468 When skipping text while looking for a next group, the matches for other
3469 groups are ignored.  Only when no next group matches, other items are tried
3470 for a match again.  This means that matching a next group and skipping white
3471 space and <EOL>s has a higher priority than other items.
3473 Example: >
3474   :syn match ifstart "\<if.*"     nextgroup=ifline skipwhite skipempty
3475   :syn match ifline  "[^ \t].*" nextgroup=ifline skipwhite skipempty contained
3476   :syn match ifline  "endif"    contained
3477 Note that the "[^ \t].*" match matches all non-white text.  Thus it would also
3478 match "endif".  Therefore the "endif" match is put last, so that it takes
3479 precedence.
3480 Note that this example doesn't work for nested "if"s.  You need to add
3481 "contains" arguments to make that work (omitted for simplicity of the
3482 example).
3484 IMPLICIT CONCEAL                                        *:syn-conceal-implicit*
3486 :sy[ntax] conceal [on|off]
3487         This defines if the following ":syntax" commands will define keywords,
3488         matches or regions with the "conceal" flag set. After ":syn conceal
3489         on", all subsequent ":syn keyword", ":syn match" or ":syn region"
3490         defined will have the "conceal" flag set implicitly. ":syn conceal
3491         off" returns to the normal state where the "conceal" flag must be
3492         given explicitly.
3494 ==============================================================================
3495 7. Syntax patterns                              *:syn-pattern* *E401* *E402*
3497 In the syntax commands, a pattern must be surrounded by two identical
3498 characters.  This is like it works for the ":s" command.  The most common to
3499 use is the double quote.  But if the pattern contains a double quote, you can
3500 use another character that is not used in the pattern.  Examples: >
3501   :syntax region Comment  start="/\*"  end="\*/"
3502   :syntax region String   start=+"+    end=+"+   skip=+\\"+
3504 See |pattern| for the explanation of what a pattern is.  Syntax patterns are
3505 always interpreted like the 'magic' option is set, no matter what the actual
3506 value of 'magic' is.  And the patterns are interpreted like the 'l' flag is
3507 not included in 'cpoptions'.  This was done to make syntax files portable and
3508 independent of 'compatible' and 'magic' settings.
3510 Try to avoid patterns that can match an empty string, such as "[a-z]*".
3511 This slows down the highlighting a lot, because it matches everywhere.
3513                                                 *:syn-pattern-offset*
3514 The pattern can be followed by a character offset.  This can be used to
3515 change the highlighted part, and to change the text area included in the
3516 match or region (which only matters when trying to match other items).  Both
3517 are relative to the matched pattern.  The character offset for a skip
3518 pattern can be used to tell where to continue looking for an end pattern.
3520 The offset takes the form of "{what}={offset}"
3521 The {what} can be one of seven strings:
3523 ms      Match Start     offset for the start of the matched text
3524 me      Match End       offset for the end of the matched text
3525 hs      Highlight Start offset for where the highlighting starts
3526 he      Highlight End   offset for where the highlighting ends
3527 rs      Region Start    offset for where the body of a region starts
3528 re      Region End      offset for where the body of a region ends
3529 lc      Leading Context offset past "leading context" of pattern
3531 The {offset} can be:
3533 s       start of the matched pattern
3534 s+{nr}  start of the matched pattern plus {nr} chars to the right
3535 s-{nr}  start of the matched pattern plus {nr} chars to the left
3536 e       end of the matched pattern
3537 e+{nr}  end of the matched pattern plus {nr} chars to the right
3538 e-{nr}  end of the matched pattern plus {nr} chars to the left
3539 {nr}    (for "lc" only): start matching {nr} chars to the left
3541 Examples: "ms=s+1", "hs=e-2", "lc=3".
3543 Although all offsets are accepted after any pattern, they are not always
3544 meaningful.  This table shows which offsets are actually used:
3546                     ms   me   hs   he   rs   re   lc ~
3547 match item          yes  yes  yes  yes  -    -    yes
3548 region item start   yes  -    yes  -    yes  -    yes
3549 region item skip    -    yes  -    -    -    -    yes
3550 region item end     -    yes  -    yes  -    yes  yes
3552 Offsets can be concatenated, with a ',' in between.  Example: >
3553   :syn match String  /"[^"]*"/hs=s+1,he=e-1
3555     some "string" text
3556           ^^^^^^                highlighted
3558 Notes:
3559 - There must be no white space between the pattern and the character
3560   offset(s).
3561 - The highlighted area will never be outside of the matched text.
3562 - A negative offset for an end pattern may not always work, because the end
3563   pattern may be detected when the highlighting should already have stopped.
3564 - Before Vim 7.2 the offsets were counted in bytes instead of characters.
3565   This didn't work well for multi-byte characters, so it was changed with the
3566   Vim 7.2 release.
3567 - The start of a match cannot be in a line other than where the pattern
3568   matched.  This doesn't work: "a\nb"ms=e.  You can make the highlighting
3569   start in another line, this does work: "a\nb"hs=e.
3571 Example (match a comment but don't highlight the /* and */): >
3572   :syntax region Comment start="/\*"hs=e+1 end="\*/"he=s-1
3574         /* this is a comment */
3575           ^^^^^^^^^^^^^^^^^^^     highlighted
3577 A more complicated Example: >
3578   :syn region Exa matchgroup=Foo start="foo"hs=s+2,rs=e+2 matchgroup=Bar end="bar"me=e-1,he=e-1,re=s-1
3580          abcfoostringbarabc
3581             mmmmmmmmmmm     match
3582               sssrrreee     highlight start/region/end ("Foo", "Exa" and "Bar")
3584 Leading context                 *:syn-lc* *:syn-leading* *:syn-context*
3586 Note: This is an obsolete feature, only included for backwards compatibility
3587 with previous Vim versions.  It's now recommended to use the |/\@<=| construct
3588 in the pattern.
3590 The "lc" offset specifies leading context -- a part of the pattern that must
3591 be present, but is not considered part of the match.  An offset of "lc=n" will
3592 cause Vim to step back n columns before attempting the pattern match, allowing
3593 characters which have already been matched in previous patterns to also be
3594 used as leading context for this match.  This can be used, for instance, to
3595 specify that an "escaping" character must not precede the match: >
3597   :syn match ZNoBackslash "[^\\]z"ms=s+1
3598   :syn match WNoBackslash "[^\\]w"lc=1
3599   :syn match Underline "_\+"
3601           ___zzzz ___wwww
3602           ^^^     ^^^     matches Underline
3603               ^ ^         matches ZNoBackslash
3604                      ^^^^ matches WNoBackslash
3606 The "ms" offset is automatically set to the same value as the "lc" offset,
3607 unless you set "ms" explicitly.
3610 Multi-line patterns                                     *:syn-multi-line*
3612 The patterns can include "\n" to match an end-of-line.  Mostly this works as
3613 expected, but there are a few exceptions.
3615 When using a start pattern with an offset, the start of the match is not
3616 allowed to start in a following line.  The highlighting can start in a
3617 following line though.  Using the "\zs" item also requires that the start of
3618 the match doesn't move to another line.
3620 The skip pattern can include the "\n", but the search for an end pattern will
3621 continue in the first character of the next line, also when that character is
3622 matched by the skip pattern.  This is because redrawing may start in any line
3623 halfway a region and there is no check if the skip pattern started in a
3624 previous line.  For example, if the skip pattern is "a\nb" and an end pattern
3625 is "b", the end pattern does match in the second line of this: >
3626          x x a
3627          b x x
3628 Generally this means that the skip pattern should not match any characters
3629 after the "\n".
3632 External matches                                        *:syn-ext-match*
3634 These extra regular expression items are available in region patterns:
3636                                                 */\z(* */\z(\)* *E50* *E52*
3637     \z(\)       Marks the sub-expression as "external", meaning that it is can
3638                 be accessed from another pattern match.  Currently only usable
3639                 in defining a syntax region start pattern.
3641                                         */\z1* */\z2* */\z3* */\z4* */\z5*
3642     \z1  ...  \z9                       */\z6* */\z7* */\z8* */\z9* *E66* *E67*
3643                 Matches the same string that was matched by the corresponding
3644                 sub-expression in a previous start pattern match.
3646 Sometimes the start and end patterns of a region need to share a common
3647 sub-expression.  A common example is the "here" document in Perl and many Unix
3648 shells.  This effect can be achieved with the "\z" special regular expression
3649 items, which marks a sub-expression as "external", in the sense that it can be
3650 referenced from outside the pattern in which it is defined.  The here-document
3651 example, for instance, can be done like this: >
3652   :syn region hereDoc start="<<\z(\I\i*\)" end="^\z1$"
3654 As can be seen here, the \z actually does double duty.  In the start pattern,
3655 it marks the "\(\I\i*\)" sub-expression as external; in the end pattern, it
3656 changes the \1 back-reference into an external reference referring to the
3657 first external sub-expression in the start pattern.  External references can
3658 also be used in skip patterns: >
3659   :syn region foo start="start \(\I\i*\)" skip="not end \z1" end="end \z1"
3661 Note that normal and external sub-expressions are completely orthogonal and
3662 indexed separately; for instance, if the pattern "\z(..\)\(..\)" is applied
3663 to the string "aabb", then \1 will refer to "bb" and \z1 will refer to "aa".
3664 Note also that external sub-expressions cannot be accessed as back-references
3665 within the same pattern like normal sub-expressions.  If you want to use one
3666 sub-expression as both a normal and an external sub-expression, you can nest
3667 the two, as in "\(\z(...\)\)".
3669 Note that only matches within a single line can be used.  Multi-line matches
3670 cannot be referred to.
3672 ==============================================================================
3673 8. Syntax clusters                                      *:syn-cluster* *E400*
3675 :sy[ntax] cluster {cluster-name} [contains={group-name}..]
3676                                  [add={group-name}..]
3677                                  [remove={group-name}..]
3679 This command allows you to cluster a list of syntax groups together under a
3680 single name.
3682         contains={group-name}..
3683                 The cluster is set to the specified list of groups.
3684         add={group-name}..
3685                 The specified groups are added to the cluster.
3686         remove={group-name}..
3687                 The specified groups are removed from the cluster.
3689 A cluster so defined may be referred to in a contains=.., containedin=..,
3690 nextgroup=.., add=..  or remove=.. list with a "@" prefix.  You can also use
3691 this notation to implicitly declare a cluster before specifying its contents.
3693 Example: >
3694    :syntax match Thing "# [^#]\+ #" contains=@ThingMembers
3695    :syntax cluster ThingMembers contains=ThingMember1,ThingMember2
3697 As the previous example suggests, modifications to a cluster are effectively
3698 retroactive; the membership of the cluster is checked at the last minute, so
3699 to speak: >
3700    :syntax keyword A aaa
3701    :syntax keyword B bbb
3702    :syntax cluster AandB contains=A
3703    :syntax match Stuff "( aaa bbb )" contains=@AandB
3704    :syntax cluster AandB add=B    " now both keywords are matched in Stuff
3706 This also has implications for nested clusters: >
3707    :syntax keyword A aaa
3708    :syntax keyword B bbb
3709    :syntax cluster SmallGroup contains=B
3710    :syntax cluster BigGroup contains=A,@SmallGroup
3711    :syntax match Stuff "( aaa bbb )" contains=@BigGroup
3712    :syntax cluster BigGroup remove=B    " no effect, since B isn't in BigGroup
3713    :syntax cluster SmallGroup remove=B  " now bbb isn't matched within Stuff
3715 ==============================================================================
3716 9. Including syntax files                               *:syn-include* *E397*
3718 It is often useful for one language's syntax file to include a syntax file for
3719 a related language.  Depending on the exact relationship, this can be done in
3720 two different ways:
3722         - If top-level syntax items in the included syntax file are to be
3723           allowed at the top level in the including syntax, you can simply use
3724           the |:runtime| command: >
3726   " In cpp.vim:
3727   :runtime! syntax/c.vim
3728   :unlet b:current_syntax
3730 <       - If top-level syntax items in the included syntax file are to be
3731           contained within a region in the including syntax, you can use the
3732           ":syntax include" command:
3734 :sy[ntax] include [@{grouplist-name}] {file-name}
3736           All syntax items declared in the included file will have the
3737           "contained" flag added.  In addition, if a group list is specified,
3738           all top-level syntax items in the included file will be added to
3739           that list. >
3741    " In perl.vim:
3742    :syntax include @Pod <sfile>:p:h/pod.vim
3743    :syntax region perlPOD start="^=head" end="^=cut" contains=@Pod
3745           When {file-name} is an absolute path (starts with "/", "c:", "$VAR"
3746           or "<sfile>") that file is sourced.  When it is a relative path
3747           (e.g., "syntax/pod.vim") the file is searched for in 'runtimepath'.
3748           All matching files are loaded.  Using a relative path is
3749           recommended, because it allows a user to replace the included file
3750           with his own version, without replacing the file that does the ":syn
3751           include".
3753 ==============================================================================
3754 10. Synchronizing                               *:syn-sync* *E403* *E404*
3756 Vim wants to be able to start redrawing in any position in the document.  To
3757 make this possible it needs to know the syntax state at the position where
3758 redrawing starts.
3760 :sy[ntax] sync [ccomment [group-name] | minlines={N} | ...]
3762 There are four ways to synchronize:
3763 1. Always parse from the start of the file.
3764    |:syn-sync-first|
3765 2. Based on C-style comments.  Vim understands how C-comments work and can
3766    figure out if the current line starts inside or outside a comment.
3767    |:syn-sync-second|
3768 3. Jumping back a certain number of lines and start parsing there.
3769    |:syn-sync-third|
3770 4. Searching backwards in the text for a pattern to sync on.
3771    |:syn-sync-fourth|
3773                                 *:syn-sync-maxlines* *:syn-sync-minlines*
3774 For the last three methods, the line range where the parsing can start is
3775 limited by "minlines" and "maxlines".
3777 If the "minlines={N}" argument is given, the parsing always starts at least
3778 that many lines backwards.  This can be used if the parsing may take a few
3779 lines before it's correct, or when it's not possible to use syncing.
3781 If the "maxlines={N}" argument is given, the number of lines that are searched
3782 for a comment or syncing pattern is restricted to N lines backwards (after
3783 adding "minlines").  This is useful if you have few things to sync on and a
3784 slow machine.  Example: >
3785    :syntax sync ccomment maxlines=500
3787                                                 *:syn-sync-linebreaks*
3788 When using a pattern that matches multiple lines, a change in one line may
3789 cause a pattern to no longer match in a previous line.  This means has to
3790 start above where the change was made.  How many lines can be specified with
3791 the "linebreaks" argument.  For example, when a pattern may include one line
3792 break use this: >
3793    :syntax sync linebreaks=1
3794 The result is that redrawing always starts at least one line before where a
3795 change was made.  The default value for "linebreaks" is zero.  Usually the
3796 value for "minlines" is bigger than "linebreaks".
3799 First syncing method:                   *:syn-sync-first*
3801    :syntax sync fromstart
3803 The file will be parsed from the start.  This makes syntax highlighting
3804 accurate, but can be slow for long files.  Vim caches previously parsed text,
3805 so that it's only slow when parsing the text for the first time.  However,
3806 when making changes some part of the next needs to be parsed again (worst
3807 case: to the end of the file).
3809 Using "fromstart" is equivalent to using "minlines" with a very large number.
3812 Second syncing method:                  *:syn-sync-second* *:syn-sync-ccomment*
3814 For the second method, only the "ccomment" argument needs to be given.
3815 Example: >
3816    :syntax sync ccomment
3818 When Vim finds that the line where displaying starts is inside a C-style
3819 comment, the last region syntax item with the group-name "Comment" will be
3820 used.  This requires that there is a region with the group-name "Comment"!
3821 An alternate group name can be specified, for example: >
3822    :syntax sync ccomment javaComment
3823 This means that the last item specified with "syn region javaComment" will be
3824 used for the detected C comment region.  This only works properly if that
3825 region does have a start pattern "\/*" and an end pattern "*\/".
3827 The "maxlines" argument can be used to restrict the search to a number of
3828 lines.  The "minlines" argument can be used to at least start a number of
3829 lines back (e.g., for when there is some construct that only takes a few
3830 lines, but it hard to sync on).
3832 Note: Syncing on a C comment doesn't work properly when strings are used
3833 that cross a line and contain a "*/".  Since letting strings cross a line
3834 is a bad programming habit (many compilers give a warning message), and the
3835 chance of a "*/" appearing inside a comment is very small, this restriction
3836 is hardly ever noticed.
3839 Third syncing method:                           *:syn-sync-third*
3841 For the third method, only the "minlines={N}" argument needs to be given.
3842 Vim will subtract {N} from the line number and start parsing there.  This
3843 means {N} extra lines need to be parsed, which makes this method a bit slower.
3844 Example: >
3845    :syntax sync minlines=50
3847 "lines" is equivalent to "minlines" (used by older versions).
3850 Fourth syncing method:                          *:syn-sync-fourth*
3852 The idea is to synchronize on the end of a few specific regions, called a
3853 sync pattern.  Only regions can cross lines, so when we find the end of some
3854 region, we might be able to know in which syntax item we are.  The search
3855 starts in the line just above the one where redrawing starts.  From there
3856 the search continues backwards in the file.
3858 This works just like the non-syncing syntax items.  You can use contained
3859 matches, nextgroup, etc.  But there are a few differences:
3860 - Keywords cannot be used.
3861 - The syntax items with the "sync" keyword form a completely separated group
3862   of syntax items.  You can't mix syncing groups and non-syncing groups.
3863 - The matching works backwards in the buffer (line by line), instead of
3864   forwards.
3865 - A line continuation pattern can be given.  It is used to decide which group
3866   of lines need to be searched like they were one line.  This means that the
3867   search for a match with the specified items starts in the first of the
3868   consecutive that contain the continuation pattern.
3869 - When using "nextgroup" or "contains", this only works within one line (or
3870   group of continued lines).
3871 - When using a region, it must start and end in the same line (or group of
3872   continued lines).  Otherwise the end is assumed to be at the end of the
3873   line (or group of continued lines).
3874 - When a match with a sync pattern is found, the rest of the line (or group of
3875   continued lines) is searched for another match.  The last match is used.
3876   This is used when a line can contain both the start end the end of a region
3877   (e.g., in a C-comment like /* this */, the last "*/" is used).
3879 There are two ways how a match with a sync pattern can be used:
3880 1. Parsing for highlighting starts where redrawing starts (and where the
3881    search for the sync pattern started).  The syntax group that is expected
3882    to be valid there must be specified.  This works well when the regions
3883    that cross lines cannot contain other regions.
3884 2. Parsing for highlighting continues just after the match.  The syntax group
3885    that is expected to be present just after the match must be specified.
3886    This can be used when the previous method doesn't work well.  It's much
3887    slower, because more text needs to be parsed.
3888 Both types of sync patterns can be used at the same time.
3890 Besides the sync patterns, other matches and regions can be specified, to
3891 avoid finding unwanted matches.
3893 [The reason that the sync patterns are given separately, is that mostly the
3894 search for the sync point can be much simpler than figuring out the
3895 highlighting.  The reduced number of patterns means it will go (much)
3896 faster.]
3898                                             *syn-sync-grouphere* *E393* *E394*
3899     :syntax sync match {sync-group-name} grouphere {group-name} "pattern" ..
3901         Define a match that is used for syncing.  {group-name} is the
3902         name of a syntax group that follows just after the match.  Parsing
3903         of the text for highlighting starts just after the match.  A region
3904         must exist for this {group-name}.  The first one defined will be used.
3905         "NONE" can be used for when there is no syntax group after the match.
3907                                                 *syn-sync-groupthere*
3908     :syntax sync match {sync-group-name} groupthere {group-name} "pattern" ..
3910         Like "grouphere", but {group-name} is the name of a syntax group that
3911         is to be used at the start of the line where searching for the sync
3912         point started.  The text between the match and the start of the sync
3913         pattern searching is assumed not to change the syntax highlighting.
3914         For example, in C you could search backwards for "/*" and "*/".  If
3915         "/*" is found first, you know that you are inside a comment, so the
3916         "groupthere" is "cComment".  If "*/" is found first, you know that you
3917         are not in a comment, so the "groupthere" is "NONE".  (in practice
3918         it's a bit more complicated, because the "/*" and "*/" could appear
3919         inside a string.  That's left as an exercise to the reader...).
3921     :syntax sync match ..
3922     :syntax sync region ..
3924         Without a "groupthere" argument.  Define a region or match that is
3925         skipped while searching for a sync point.
3927                                                 *syn-sync-linecont*
3928     :syntax sync linecont {pattern}
3930         When {pattern} matches in a line, it is considered to continue in
3931         the next line.  This means that the search for a sync point will
3932         consider the lines to be concatenated.
3934 If the "maxlines={N}" argument is given too, the number of lines that are
3935 searched for a match is restricted to N.  This is useful if you have very
3936 few things to sync on and a slow machine.  Example: >
3937    :syntax sync maxlines=100
3939 You can clear all sync settings with: >
3940    :syntax sync clear
3942 You can clear specific sync patterns with: >
3943    :syntax sync clear {sync-group-name} ..
3945 ==============================================================================
3946 11. Listing syntax items                *:syntax* *:sy* *:syn* *:syn-list*
3948 This command lists all the syntax items: >
3950     :sy[ntax] [list]
3952 To show the syntax items for one syntax group: >
3954     :sy[ntax] list {group-name}
3956 To list the syntax groups in one cluster:                       *E392*  >
3958     :sy[ntax] list @{cluster-name}
3960 See above for other arguments for the ":syntax" command.
3962 Note that the ":syntax" command can be abbreviated to ":sy", although ":syn"
3963 is mostly used, because it looks better.
3965 ==============================================================================
3966 12. Highlight command                   *:highlight* *:hi* *E28* *E411* *E415*
3968 There are three types of highlight groups:
3969 - The ones used for specific languages.  For these the name starts with the
3970   name of the language.  Many of these don't have any attributes, but are
3971   linked to a group of the second type.
3972 - The ones used for all syntax languages.
3973 - The ones used for the 'highlight' option.
3974                                                         *hitest.vim*
3975 You can see all the groups currently active with this command: >
3976     :so $VIMRUNTIME/syntax/hitest.vim
3977 This will open a new window containing all highlight group names, displayed
3978 in their own color.
3980                                                 *:colo* *:colorscheme* *E185*
3981 :colo[rscheme]          Output the name of the currently active color scheme.
3982                         This is basically the same as >
3983                                 :echo g:colors_name
3984 <                       In case g:colors_name has not been defined :colo will
3985                         output "default".  When compiled without the |+eval|
3986                         feature it will output "unknown".
3988 :colo[rscheme] {name}   Load color scheme {name}.  This searches 'runtimepath'
3989                         for the file "colors/{name}.vim.  The first one that
3990                         is found is loaded.
3991                         To see the name of the currently active color scheme: >
3992                                 :colo
3993 <                       The name is also stored in the g:colors_name variable.
3994                         Doesn't work recursively, thus you can't use
3995                         ":colorscheme" in a color scheme script.
3996                         After the color scheme has been loaded the
3997                         |ColorScheme| autocommand event is triggered.
3998                         For info about writing a colorscheme file: >
3999                                 :edit $VIMRUNTIME/colors/README.txt
4001 :hi[ghlight]            List all the current highlight groups that have
4002                         attributes set.
4004 :hi[ghlight] {group-name}
4005                         List one highlight group.
4007 :hi[ghlight] clear      Reset all highlighting to the defaults.  Removes all
4008                         highlighting for groups added by the user!
4009                         Uses the current value of 'background' to decide which
4010                         default colors to use.
4012 :hi[ghlight] clear {group-name}
4013 :hi[ghlight] {group-name} NONE
4014                         Disable the highlighting for one highlight group.  It
4015                         is _not_ set back to the default colors.
4017 :hi[ghlight] [default] {group-name} {key}={arg} ..
4018                         Add a highlight group, or change the highlighting for
4019                         an existing group.
4020                         See |highlight-args| for the {key}={arg} arguments.
4021                         See |:highlight-default| for the optional [default]
4022                         argument.
4024 Normally a highlight group is added once when starting up.  This sets the
4025 default values for the highlighting.  After that, you can use additional
4026 highlight commands to change the arguments that you want to set to non-default
4027 values.  The value "NONE" can be used to switch the value off or go back to
4028 the default value.
4030 A simple way to change colors is with the |:colorscheme| command.  This loads
4031 a file with ":highlight" commands such as this: >
4033    :hi Comment  gui=bold
4035 Note that all settings that are not included remain the same, only the
4036 specified field is used, and settings are merged with previous ones.  So, the
4037 result is like this single command has been used: >
4038    :hi Comment  term=bold ctermfg=Cyan guifg=#80a0ff gui=bold
4040                                                         *:highlight-verbose*
4041 When listing a highlight group and 'verbose' is non-zero, the listing will
4042 also tell where it was last set.  Example: >
4043         :verbose hi Comment
4044 <       Comment        xxx term=bold ctermfg=4 guifg=Blue ~
4045            Last set from /home/mool/vim/vim7/runtime/syntax/syncolor.vim ~
4047 When ":hi clear" is used then the script where this command is used will be
4048 mentioned for the default values. See |:verbose-cmd| for more information.
4050                                         *highlight-args* *E416* *E417* *E423*
4051 There are three types of terminals for highlighting:
4052 term    a normal terminal (vt100, xterm)
4053 cterm   a color terminal (MS-DOS console, color-xterm, these have the "Co"
4054         termcap entry)
4055 gui     the GUI
4057 For each type the highlighting can be given.  This makes it possible to use
4058 the same syntax file on all terminals, and use the optimal highlighting.
4060 1. highlight arguments for normal terminals
4062                                         *bold* *underline* *undercurl*
4063                                         *inverse* *italic* *standout*
4064 term={attr-list}                        *attr-list* *highlight-term* *E418*
4065         attr-list is a comma separated list (without spaces) of the
4066         following items (in any order):
4067                 bold
4068                 underline
4069                 undercurl       not always available
4070                 reverse
4071                 inverse         same as reverse
4072                 italic
4073                 standout
4074                 NONE            no attributes used (used to reset it)
4076         Note that "bold" can be used here and by using a bold font.  They
4077         have the same effect.
4078         "undercurl" is a curly underline.  When "undercurl" is not possible
4079         then "underline" is used.  In general "undercurl" is only available in
4080         the GUI.  The color is set with |highlight-guisp|.
4082 start={term-list}                               *highlight-start* *E422*
4083 stop={term-list}                                *term-list* *highlight-stop*
4084         These lists of terminal codes can be used to get
4085         non-standard attributes on a terminal.
4087         The escape sequence specified with the "start" argument
4088         is written before the characters in the highlighted
4089         area.  It can be anything that you want to send to the
4090         terminal to highlight this area.  The escape sequence
4091         specified with the "stop" argument is written after the
4092         highlighted area.  This should undo the "start" argument.
4093         Otherwise the screen will look messed up.
4095         The {term-list} can have two forms:
4097         1. A string with escape sequences.
4098            This is any string of characters, except that it can't start with
4099            "t_" and blanks are not allowed.  The <> notation is recognized
4100            here, so you can use things like "<Esc>" and "<Space>".  Example:
4101                 start=<Esc>[27h;<Esc>[<Space>r;
4103         2. A list of terminal codes.
4104            Each terminal code has the form "t_xx", where "xx" is the name of
4105            the termcap entry.  The codes have to be separated with commas.
4106            White space is not allowed.  Example:
4107                 start=t_C1,t_BL
4108            The terminal codes must exist for this to work.
4111 2. highlight arguments for color terminals
4113 cterm={attr-list}                                       *highlight-cterm*
4114         See above for the description of {attr-list} |attr-list|.
4115         The "cterm" argument is likely to be different from "term", when
4116         colors are used.  For example, in a normal terminal comments could
4117         be underlined, in a color terminal they can be made Blue.
4118         Note: Many terminals (e.g., DOS console) can't mix these attributes
4119         with coloring.  Use only one of "cterm=" OR "ctermfg=" OR "ctermbg=".
4121 ctermfg={color-nr}                              *highlight-ctermfg* *E421*
4122 ctermbg={color-nr}                              *highlight-ctermbg*
4123         The {color-nr} argument is a color number.  Its range is zero to
4124         (not including) the number given by the termcap entry "Co".
4125         The actual color with this number depends on the type of terminal
4126         and its settings.  Sometimes the color also depends on the settings of
4127         "cterm".  For example, on some systems "cterm=bold ctermfg=3" gives
4128         another color, on others you just get color 3.
4130         For an xterm this depends on your resources, and is a bit
4131         unpredictable.  See your xterm documentation for the defaults.  The
4132         colors for a color-xterm can be changed from the .Xdefaults file.
4133         Unfortunately this means that it's not possible to get the same colors
4134         for each user.  See |xterm-color| for info about color xterms.
4136         The MSDOS standard colors are fixed (in a console window), so these
4137         have been used for the names.  But the meaning of color names in X11
4138         are fixed, so these color settings have been used, to make the
4139         highlighting settings portable (complicated, isn't it?).  The
4140         following names are recognized, with the color number used:
4142                                                         *cterm-colors*
4143             NR-16   NR-8    COLOR NAME ~
4144             0       0       Black
4145             1       4       DarkBlue
4146             2       2       DarkGreen
4147             3       6       DarkCyan
4148             4       1       DarkRed
4149             5       5       DarkMagenta
4150             6       3       Brown, DarkYellow
4151             7       7       LightGray, LightGrey, Gray, Grey
4152             8       0*      DarkGray, DarkGrey
4153             9       4*      Blue, LightBlue
4154             10      2*      Green, LightGreen
4155             11      6*      Cyan, LightCyan
4156             12      1*      Red, LightRed
4157             13      5*      Magenta, LightMagenta
4158             14      3*      Yellow, LightYellow
4159             15      7*      White
4161         The number under "NR-16" is used for 16-color terminals ('t_Co'
4162         greater than or equal to 16).  The number under "NR-8" is used for
4163         8-color terminals ('t_Co' less than 16).  The '*' indicates that the
4164         bold attribute is set for ctermfg.  In many 8-color terminals (e.g.,
4165         "linux"), this causes the bright colors to appear.  This doesn't work
4166         for background colors!  Without the '*' the bold attribute is removed.
4167         If you want to set the bold attribute in a different way, put a
4168         "cterm=" argument AFTER the "ctermfg=" or "ctermbg=" argument.  Or use
4169         a number instead of a color name.
4171         The case of the color names is ignored.
4172         Note that for 16 color ansi style terminals (including xterms), the
4173         numbers in the NR-8 column is used.  Here '*' means 'add 8' so that Blue
4174         is 12, DarkGray is 8 etc.
4176         Note that for some color terminals these names may result in the wrong
4177         colors!
4179                                                         *:hi-normal-cterm*
4180         When setting the "ctermfg" or "ctermbg" colors for the Normal group,
4181         these will become the colors used for the non-highlighted text.
4182         Example: >
4183                 :highlight Normal ctermfg=grey ctermbg=darkblue
4184 <       When setting the "ctermbg" color for the Normal group, the
4185         'background' option will be adjusted automatically.  This causes the
4186         highlight groups that depend on 'background' to change!  This means
4187         you should set the colors for Normal first, before setting other
4188         colors.
4189         When a colorscheme is being used, changing 'background' causes it to
4190         be reloaded, which may reset all colors (including Normal).  First
4191         delete the "g:colors_name" variable when you don't want this.
4193         When you have set "ctermfg" or "ctermbg" for the Normal group, Vim
4194         needs to reset the color when exiting.  This is done with the "op"
4195         termcap entry |t_op|.  If this doesn't work correctly, try setting the
4196         't_op' option in your .vimrc.
4197                                                         *E419* *E420*
4198         When Vim knows the normal foreground and background colors, "fg" and
4199         "bg" can be used as color names.  This only works after setting the
4200         colors for the Normal group and for the MS-DOS console.  Example, for
4201         reverse video: >
4202             :highlight Visual ctermfg=bg ctermbg=fg
4203 <       Note that the colors are used that are valid at the moment this
4204         command are given.  If the Normal group colors are changed later, the
4205         "fg" and "bg" colors will not be adjusted.
4208 3. highlight arguments for the GUI
4210 gui={attr-list}                                         *highlight-gui*
4211         These give the attributes to use in the GUI mode.
4212         See |attr-list| for a description.
4213         Note that "bold" can be used here and by using a bold font.  They
4214         have the same effect.
4215         Note that the attributes are ignored for the "Normal" group.
4217 font={font-name}                                        *highlight-font*
4218         font-name is the name of a font, as it is used on the system Vim
4219         runs on.  For X11 this is a complicated name, for example: >
4220    font=-misc-fixed-bold-r-normal--14-130-75-75-c-70-iso8859-1
4222         The font-name "NONE" can be used to revert to the default font.
4223         When setting the font for the "Normal" group, this becomes the default
4224         font (until the 'guifont' option is changed; the last one set is
4225         used).
4226         The following only works with Motif and Athena, not with other GUIs:
4227         When setting the font for the "Menu" group, the menus will be changed.
4228         When setting the font for the "Tooltip" group, the tooltips will be
4229         changed.
4230         All fonts used, except for Menu and Tooltip, should be of the same
4231         character size as the default font!  Otherwise redrawing problems will
4232         occur.
4234 guifg={color-name}                                      *highlight-guifg*
4235 guibg={color-name}                                      *highlight-guibg*
4236 guisp={color-name}                                      *highlight-guisp*
4237         These give the foreground (guifg), background (guibg) and special
4238         (guisp) color to use in the GUI.  "guisp" is used for undercurl.
4239         There are a few special names:
4240                 NONE            no color (transparent)
4241                 bg              use normal background color
4242                 background      use normal background color
4243                 fg              use normal foreground color
4244                 foreground      use normal foreground color
4245         To use a color name with an embedded space or other special character,
4246         put it in single quotes.  The single quote cannot be used then.
4247         Example: >
4248             :hi comment guifg='salmon pink'
4250                                                         *gui-colors*
4251         Suggested color names (these are available on most systems):
4252             Red         LightRed        DarkRed
4253             Green       LightGreen      DarkGreen       SeaGreen
4254             Blue        LightBlue       DarkBlue        SlateBlue
4255             Cyan        LightCyan       DarkCyan
4256             Magenta     LightMagenta    DarkMagenta
4257             Yellow      LightYellow     Brown           DarkYellow
4258             Gray        LightGray       DarkGray
4259             Black       White
4260             Orange      Purple          Violet
4262         In the Win32 GUI version, additional system colors are available.  See
4263         |win32-colors|.
4265         You can also specify a color by its Red, Green and Blue values.
4266         The format is "#rrggbb", where
4267                 "rr"    is the Red value
4268                 "gg"    is the Green value
4269                 "bb"    is the Blue value
4270         All values are hexadecimal, range from "00" to "ff".  Examples: >
4271   :highlight Comment guifg=#11f0c3 guibg=#ff00ff
4273                                         *highlight-groups* *highlight-default*
4274 These are the default highlighting groups.  These groups are used by the
4275 'highlight' option default.  Note that the highlighting depends on the value
4276 of 'background'.  You can see the current settings with the ":highlight"
4277 command.
4278                                                         *hl-ColorColumn*
4279 ColorColumn     used for the columns set with 'colorcolumn'
4280                                                         *hl-Conceal*
4281 Conceal         placeholder characters substituted for concealed
4282                 text (see 'conceallevel')
4283                                                         *hl-Cursor*
4284 Cursor          the character under the cursor
4285                                                         *hl-CursorIM*
4286 CursorIM        like Cursor, but used when in IME mode |CursorIM|
4287                                                         *hl-CursorColumn*
4288 CursorColumn    the screen column that the cursor is in when 'cursorcolumn' is
4289                 set
4290                                                         *hl-CursorLine*
4291 CursorLine      the screen line that the cursor is in when 'cursorline' is
4292                 set
4293                                                         *hl-Directory*
4294 Directory       directory names (and other special names in listings)
4295                                                         *hl-DiffAdd*
4296 DiffAdd         diff mode: Added line |diff.txt|
4297                                                         *hl-DiffChange*
4298 DiffChange      diff mode: Changed line |diff.txt|
4299                                                         *hl-DiffDelete*
4300 DiffDelete      diff mode: Deleted line |diff.txt|
4301                                                         *hl-DiffText*
4302 DiffText        diff mode: Changed text within a changed line |diff.txt|
4303                                                         *hl-ErrorMsg*
4304 ErrorMsg        error messages on the command line
4305                                                         *hl-VertSplit*
4306 VertSplit       the column separating vertically split windows
4307                                                         *hl-Folded*
4308 Folded          line used for closed folds
4309                                                         *hl-FoldColumn*
4310 FoldColumn      'foldcolumn'
4311                                                         *hl-SignColumn*
4312 SignColumn      column where |signs| are displayed
4313                                                         *hl-IncSearch*
4314 IncSearch       'incsearch' highlighting; also used for the text replaced with
4315                 ":s///c"
4316                                                         *hl-LineNr*
4317 LineNr          Line number for ":number" and ":#" commands, and when 'number'
4318                 or 'relativenumber' option is set.
4319                                                         *hl-MatchParen*
4320 MatchParen      The character under the cursor or just before it, if it
4321                 is a paired bracket, and its match. |pi_paren.txt|
4323                                                         *hl-ModeMsg*
4324 ModeMsg         'showmode' message (e.g., "-- INSERT --")
4325                                                         *hl-MoreMsg*
4326 MoreMsg         |more-prompt|
4327                                                         *hl-NonText*
4328 NonText         '~' and '@' at the end of the window, characters from
4329                 'showbreak' and other characters that do not really exist in
4330                 the text (e.g., ">" displayed when a double-wide character
4331                 doesn't fit at the end of the line).
4332                                                         *hl-Normal*
4333 Normal          normal text
4334                                                         *hl-Pmenu*
4335 Pmenu           Popup menu: normal item.
4336                                                         *hl-PmenuSel*
4337 PmenuSel        Popup menu: selected item.
4338                                                         *hl-PmenuSbar*
4339 PmenuSbar       Popup menu: scrollbar.
4340                                                         *hl-PmenuThumb*
4341 PmenuThumb      Popup menu: Thumb of the scrollbar.
4342                                                         *hl-Question*
4343 Question        |hit-enter| prompt and yes/no questions
4344                                                         *hl-Search*
4345 Search          Last search pattern highlighting (see 'hlsearch').
4346                 Also used for highlighting the current line in the quickfix
4347                 window and similar items that need to stand out.
4348                                                         *hl-SpecialKey*
4349 SpecialKey      Meta and special keys listed with ":map", also for text used
4350                 to show unprintable characters in the text, 'listchars'.
4351                 Generally: text that is displayed differently from what it
4352                 really is.
4353                                                         *hl-SpellBad*
4354 SpellBad        Word that is not recognized by the spellchecker. |spell|
4355                 This will be combined with the highlighting used otherwise.
4356                                                         *hl-SpellCap*
4357 SpellCap        Word that should start with a capital. |spell|
4358                 This will be combined with the highlighting used otherwise.
4359                                                         *hl-SpellLocal*
4360 SpellLocal      Word that is recognized by the spellchecker as one that is
4361                 used in another region. |spell|
4362                 This will be combined with the highlighting used otherwise.
4363                                                         *hl-SpellRare*
4364 SpellRare       Word that is recognized by the spellchecker as one that is
4365                 hardly ever used. |spell|
4366                 This will be combined with the highlighting used otherwise.
4367                                                         *hl-StatusLine*
4368 StatusLine      status line of current window
4369                                                         *hl-StatusLineNC*
4370 StatusLineNC    status lines of not-current windows
4371                 Note: if this is equal to "StatusLine" Vim will use "^^^" in
4372                 the status line of the current window.
4373                                                         *hl-TabLine*
4374 TabLine         tab pages line, not active tab page label
4375                                                         *hl-TabLineFill*
4376 TabLineFill     tab pages line, where there are no labels
4377                                                         *hl-TabLineSel*
4378 TabLineSel      tab pages line, active tab page label
4379                                                         *hl-Title*
4380 Title           titles for output from ":set all", ":autocmd" etc.
4381                                                         *hl-Visual*
4382 Visual          Visual mode selection
4383                                                         *hl-VisualNOS*
4384 VisualNOS       Visual mode selection when vim is "Not Owning the Selection".
4385                 Only X11 Gui's |gui-x11| and |xterm-clipboard| supports this.
4386                                                         *hl-WarningMsg*
4387 WarningMsg      warning messages
4388                                                         *hl-WildMenu*
4389 WildMenu        current match in 'wildmenu' completion
4391                                         *hl-User1* *hl-User1..9* *hl-User9*
4392 The 'statusline' syntax allows the use of 9 different highlights in the
4393 statusline and ruler (via 'rulerformat').  The names are User1 to User9.
4395 For the GUI you can use the following groups to set the colors for the menu,
4396 scrollbars and tooltips.  They don't have defaults.  This doesn't work for the
4397 Win32 GUI.  Only three highlight arguments have any effect here: font, guibg,
4398 and guifg.
4400                                                         *hl-Menu*
4401 Menu            Current font, background and foreground colors of the menus.
4402                 Also used for the toolbar.
4403                 Applicable highlight arguments: font, guibg, guifg.
4405                 NOTE: For Motif and Athena the font argument actually
4406                 specifies a fontset at all times, no matter if 'guifontset' is
4407                 empty, and as such it is tied to the current |:language| when
4408                 set.
4410                                                         *hl-Scrollbar*
4411 Scrollbar       Current background and foreground of the main window's
4412                 scrollbars.
4413                 Applicable highlight arguments: guibg, guifg.
4415                                                         *hl-Tooltip*
4416 Tooltip         Current font, background and foreground of the tooltips.
4417                 Applicable highlight arguments: font, guibg, guifg.
4419                 NOTE: For Motif and Athena the font argument actually
4420                 specifies a fontset at all times, no matter if 'guifontset' is
4421                 empty, and as such it is tied to the current |:language| when
4422                 set.
4424 ==============================================================================
4425 13. Linking groups              *:hi-link* *:highlight-link* *E412* *E413*
4427 When you want to use the same highlighting for several syntax groups, you
4428 can do this more easily by linking the groups into one common highlight
4429 group, and give the color attributes only for that group.
4431 To set a link:
4433     :hi[ghlight][!] [default] link {from-group} {to-group}
4435 To remove a link:
4437     :hi[ghlight][!] [default] link {from-group} NONE
4439 Notes:                                                  *E414*
4440 - If the {from-group} and/or {to-group} doesn't exist, it is created.  You
4441   don't get an error message for a non-existing group.
4442 - As soon as you use a ":highlight" command for a linked group, the link is
4443   removed.
4444 - If there are already highlight settings for the {from-group}, the link is
4445   not made, unless the '!' is given.  For a ":highlight link" command in a
4446   sourced file, you don't get an error message.  This can be used to skip
4447   links for groups that already have settings.
4449                                         *:hi-default* *:highlight-default*
4450 The [default] argument is used for setting the default highlighting for a
4451 group.  If highlighting has already been specified for the group the command
4452 will be ignored.  Also when there is an existing link.
4454 Using [default] is especially useful to overrule the highlighting of a
4455 specific syntax file.  For example, the C syntax file contains: >
4456         :highlight default link cComment Comment
4457 If you like Question highlighting for C comments, put this in your vimrc file: >
4458         :highlight link cComment Question
4459 Without the "default" in the C syntax file, the highlighting would be
4460 overruled when the syntax file is loaded.
4462 ==============================================================================
4463 14. Cleaning up                                         *:syn-clear* *E391*
4465 If you want to clear the syntax stuff for the current buffer, you can use this
4466 command: >
4467   :syntax clear
4469 This command should be used when you want to switch off syntax highlighting,
4470 or when you want to switch to using another syntax.  It's normally not needed
4471 in a syntax file itself, because syntax is cleared by the autocommands that
4472 load the syntax file.
4473 The command also deletes the "b:current_syntax" variable, since no syntax is
4474 loaded after this command.
4476 If you want to disable syntax highlighting for all buffers, you need to remove
4477 the autocommands that load the syntax files: >
4478   :syntax off
4480 What this command actually does, is executing the command >
4481   :source $VIMRUNTIME/syntax/nosyntax.vim
4482 See the "nosyntax.vim" file for details.  Note that for this to work
4483 $VIMRUNTIME must be valid.  See |$VIMRUNTIME|.
4485 To clean up specific syntax groups for the current buffer: >
4486   :syntax clear {group-name} ..
4487 This removes all patterns and keywords for {group-name}.
4489 To clean up specific syntax group lists for the current buffer: >
4490   :syntax clear @{grouplist-name} ..
4491 This sets {grouplist-name}'s contents to an empty list.
4493                                                 *:syntax-reset* *:syn-reset*
4494 If you have changed the colors and messed them up, use this command to get the
4495 defaults back: >
4497   :syntax reset
4499 This doesn't change the colors for the 'highlight' option.
4501 Note that the syntax colors that you set in your vimrc file will also be reset
4502 back to their Vim default.
4503 Note that if you are using a color scheme, the colors defined by the color
4504 scheme for syntax highlighting will be lost.
4506 What this actually does is: >
4508         let g:syntax_cmd = "reset"
4509         runtime! syntax/syncolor.vim
4511 Note that this uses the 'runtimepath' option.
4513                                                         *syncolor*
4514 If you want to use different colors for syntax highlighting, you can add a Vim
4515 script file to set these colors.  Put this file in a directory in
4516 'runtimepath' which comes after $VIMRUNTIME, so that your settings overrule
4517 the default colors.  This way these colors will be used after the ":syntax
4518 reset" command.
4520 For Unix you can use the file ~/.vim/after/syntax/syncolor.vim.  Example: >
4522         if &background == "light"
4523           highlight comment ctermfg=darkgreen guifg=darkgreen
4524         else
4525           highlight comment ctermfg=green guifg=green
4526         endif
4528                                                                 *E679*
4529 Do make sure this syncolor.vim script does not use a "syntax on", set the
4530 'background' option or uses a "colorscheme" command, because it results in an
4531 endless loop.
4533 Note that when a color scheme is used, there might be some confusion whether
4534 your defined colors are to be used or the colors from the scheme.  This
4535 depends on the color scheme file.  See |:colorscheme|.
4537                                                         *syntax_cmd*
4538 The "syntax_cmd" variable is set to one of these values when the
4539 syntax/syncolor.vim files are loaded:
4540    "on"         ":syntax on" command.  Highlight colors are overruled but
4541                 links are kept
4542    "enable"     ":syntax enable" command.  Only define colors for groups that
4543                 don't have highlighting yet.  Use ":syntax default".
4544    "reset"      ":syntax reset" command or loading a color scheme.  Define all
4545                 the colors.
4546    "skip"       Don't define colors.  Used to skip the default settings when a
4547                 syncolor.vim file earlier in 'runtimepath' has already set
4548                 them.
4550 ==============================================================================
4551 15. Highlighting tags                                   *tag-highlight*
4553 If you want to highlight all the tags in your file, you can use the following
4554 mappings.
4556         <F11>   -- Generate tags.vim file, and highlight tags.
4557         <F12>   -- Just highlight tags based on existing tags.vim file.
4559   :map <F11>  :sp tags<CR>:%s/^\([^     :]*:\)\=\([^    ]*\).*/syntax keyword Tag \2/<CR>:wq! tags.vim<CR>/^<CR><F12>
4560   :map <F12>  :so tags.vim<CR>
4562 WARNING: The longer the tags file, the slower this will be, and the more
4563 memory Vim will consume.
4565 Only highlighting typedefs, unions and structs can be done too.  For this you
4566 must use Exuberant ctags (found at http://ctags.sf.net).
4568 Put these lines in your Makefile:
4570 # Make a highlight file for types.  Requires Exuberant ctags and awk
4571 types: types.vim
4572 types.vim: *.[ch]
4573         ctags --c-kinds=gstu -o- *.[ch] |\
4574                 awk 'BEGIN{printf("syntax keyword Type\t")}\
4575                         {printf("%s ", $$1)}END{print ""}' > $@
4577 And put these lines in your .vimrc: >
4579    " load the types.vim highlighting file, if it exists
4580    autocmd BufRead,BufNewFile *.[ch] let fname = expand('<afile>:p:h') . '/types.vim'
4581    autocmd BufRead,BufNewFile *.[ch] if filereadable(fname)
4582    autocmd BufRead,BufNewFile *.[ch]   exe 'so ' . fname
4583    autocmd BufRead,BufNewFile *.[ch] endif
4585 ==============================================================================
4586 16. Window-local syntax                         *:ownsyntax*
4588 Normally all windows on a buffer share the same syntax settings. It is
4589 possible, however, to set a particular window on a file to have its own
4590 private syntax setting. A possible example would be to edit LaTeX source
4591 with conventional highlighting in one window, while seeing the same source
4592 highlighted differently (so as to hide control sequences and indicate bold,
4593 italic etc regions) in another. The 'scrollbind' option is useful here.
4595 To set the current window to have the syntax "foo", separately from all other
4596 windows on the buffer: >
4597    :ownsyntax foo
4598 <                                               *w:current_syntax*
4599 This will set the "w:current_syntax" variable to "foo".  The value of
4600 "b:current_syntax" does not change.  This is implemented by saving and
4601 restoring "b:current_syntax", since the syntax files do set
4602 "b:current_syntax".  The value set by the syntax file is assigned to
4603 "w:current_syntax".
4605 Once a window has its own syntax, syntax commands executed from other windows
4606 on the same buffer (including :syntax clear) have no effect. Conversely, 
4607 syntax commands executed from that window do not effect other windows on the
4608 same buffer.
4610 A window with its own syntax reverts to normal behavior when another buffer
4611 is loaded into that window or the file is reloaded.
4612 When splitting the window, the new window will use the original syntax.
4614 ==============================================================================
4615 16. Color xterms                                *xterm-color* *color-xterm*
4617 Most color xterms have only eight colors.  If you don't get colors with the
4618 default setup, it should work with these lines in your .vimrc: >
4619    :if &term =~ "xterm"
4620    :  if has("terminfo")
4621    :    set t_Co=8
4622    :    set t_Sf=<Esc>[3%p1%dm
4623    :    set t_Sb=<Esc>[4%p1%dm
4624    :  else
4625    :    set t_Co=8
4626    :    set t_Sf=<Esc>[3%dm
4627    :    set t_Sb=<Esc>[4%dm
4628    :  endif
4629    :endif
4630 <       [<Esc> is a real escape, type CTRL-V <Esc>]
4632 You might want to change the first "if" to match the name of your terminal,
4633 e.g. "dtterm" instead of "xterm".
4635 Note: Do these settings BEFORE doing ":syntax on".  Otherwise the colors may
4636 be wrong.
4637                                                         *xiterm* *rxvt*
4638 The above settings have been mentioned to work for xiterm and rxvt too.
4639 But for using 16 colors in an rxvt these should work with terminfo: >
4640         :set t_AB=<Esc>[%?%p1%{8}%<%t25;%p1%{40}%+%e5;%p1%{32}%+%;%dm
4641         :set t_AF=<Esc>[%?%p1%{8}%<%t22;%p1%{30}%+%e1;%p1%{22}%+%;%dm
4643                                                         *colortest.vim*
4644 To test your color setup, a file has been included in the Vim distribution.
4645 To use it, execute this command: >
4646    :runtime syntax/colortest.vim
4648 Some versions of xterm (and other terminals, like the Linux console) can
4649 output lighter foreground colors, even though the number of colors is defined
4650 at 8.  Therefore Vim sets the "cterm=bold" attribute for light foreground
4651 colors, when 't_Co' is 8.
4653                                                         *xfree-xterm*
4654 To get 16 colors or more, get the newest xterm version (which should be
4655 included with XFree86 3.3 and later).  You can also find the latest version
4656 at: >
4657         http://invisible-island.net/xterm/xterm.html
4658 Here is a good way to configure it.  This uses 88 colors and enables the
4659 termcap-query feature, which allows Vim to ask the xterm how many colors it
4660 supports. >
4661         ./configure --disable-bold-color --enable-88-color --enable-tcap-query
4662 If you only get 8 colors, check the xterm compilation settings.
4663 (Also see |UTF8-xterm| for using this xterm with UTF-8 character encoding).
4665 This xterm should work with these lines in your .vimrc (for 16 colors): >
4666    :if has("terminfo")
4667    :  set t_Co=16
4668    :  set t_AB=<Esc>[%?%p1%{8}%<%t%p1%{40}%+%e%p1%{92}%+%;%dm
4669    :  set t_AF=<Esc>[%?%p1%{8}%<%t%p1%{30}%+%e%p1%{82}%+%;%dm
4670    :else
4671    :  set t_Co=16
4672    :  set t_Sf=<Esc>[3%dm
4673    :  set t_Sb=<Esc>[4%dm
4674    :endif
4675 <       [<Esc> is a real escape, type CTRL-V <Esc>]
4677 Without |+terminfo|, Vim will recognize these settings, and automatically
4678 translate cterm colors of 8 and above to "<Esc>[9%dm" and "<Esc>[10%dm".
4679 Colors above 16 are also translated automatically.
4681 For 256 colors this has been reported to work: >
4683    :set t_AB=<Esc>[48;5;%dm
4684    :set t_AF=<Esc>[38;5;%dm
4686 Or just set the TERM environment variable to "xterm-color" or "xterm-16color"
4687 and try if that works.
4689 You probably want to use these X resources (in your ~/.Xdefaults file):
4690         XTerm*color0:                   #000000
4691         XTerm*color1:                   #c00000
4692         XTerm*color2:                   #008000
4693         XTerm*color3:                   #808000
4694         XTerm*color4:                   #0000c0
4695         XTerm*color5:                   #c000c0
4696         XTerm*color6:                   #008080
4697         XTerm*color7:                   #c0c0c0
4698         XTerm*color8:                   #808080
4699         XTerm*color9:                   #ff6060
4700         XTerm*color10:                  #00ff00
4701         XTerm*color11:                  #ffff00
4702         XTerm*color12:                  #8080ff
4703         XTerm*color13:                  #ff40ff
4704         XTerm*color14:                  #00ffff
4705         XTerm*color15:                  #ffffff
4706         Xterm*cursorColor:              Black
4708 [Note: The cursorColor is required to work around a bug, which changes the
4709 cursor color to the color of the last drawn text.  This has been fixed by a
4710 newer version of xterm, but not everybody is using it yet.]
4712 To get these right away, reload the .Xdefaults file to the X Option database
4713 Manager (you only need to do this when you just changed the .Xdefaults file): >
4714   xrdb -merge ~/.Xdefaults
4716                                         *xterm-blink* *xterm-blinking-cursor*
4717 To make the cursor blink in an xterm, see tools/blink.c.  Or use Thomas
4718 Dickey's xterm above patchlevel 107 (see above for where to get it), with
4719 these resources:
4720         XTerm*cursorBlink:      on
4721         XTerm*cursorOnTime:     400
4722         XTerm*cursorOffTime:    250
4723         XTerm*cursorColor:      White
4725                                                         *hpterm-color*
4726 These settings work (more or less) for an hpterm, which only supports 8
4727 foreground colors: >
4728    :if has("terminfo")
4729    :  set t_Co=8
4730    :  set t_Sf=<Esc>[&v%p1%dS
4731    :  set t_Sb=<Esc>[&v7S
4732    :else
4733    :  set t_Co=8
4734    :  set t_Sf=<Esc>[&v%dS
4735    :  set t_Sb=<Esc>[&v7S
4736    :endif
4737 <       [<Esc> is a real escape, type CTRL-V <Esc>]
4739                                                 *Eterm* *enlightened-terminal*
4740 These settings have been reported to work for the Enlightened terminal
4741 emulator, or Eterm.  They might work for all xterm-like terminals that use the
4742 bold attribute to get bright colors.  Add an ":if" like above when needed. >
4743        :set t_Co=16
4744        :set t_AF=^[[%?%p1%{8}%<%t3%p1%d%e%p1%{22}%+%d;1%;m
4745        :set t_AB=^[[%?%p1%{8}%<%t4%p1%d%e%p1%{32}%+%d;1%;m
4747                                                 *TTpro-telnet*
4748 These settings should work for TTpro telnet.  Tera Term Pro is a freeware /
4749 open-source program for MS-Windows. >
4750         set t_Co=16
4751         set t_AB=^[[%?%p1%{8}%<%t%p1%{40}%+%e%p1%{32}%+5;%;%dm
4752         set t_AF=^[[%?%p1%{8}%<%t%p1%{30}%+%e%p1%{22}%+1;%;%dm
4753 Also make sure TTpro's Setup / Window / Full Color is enabled, and make sure
4754 that Setup / Font / Enable Bold is NOT enabled.
4755 (info provided by John Love-Jensen <eljay@Adobe.COM>)
4757  vim:tw=78:sw=4:ts=8:ft=help:norl: