home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / unix / vim-6.2.tar.bz2 / vim-6.2.tar / vim62 / runtime / doc / syntax.txt < prev    next >
Encoding:
Text File  |  2003-06-01  |  152.1 KB  |  3,903 lines

  1. *syntax.txt*    For Vim version 6.2.  Last change: 2003 Jun 01
  2.  
  3.  
  4.           VIM REFERENCE MANUAL    by Bram Moolenaar
  5.  
  6.  
  7. Syntax highlighting        *syntax* *syntax-highlighting* *coloring*
  8.  
  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.
  14.  
  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.
  18.  
  19. In the User Manual:
  20. |usr_06.txt| introduces syntax highlighting.
  21. |usr_44.txt| introduces writing a syntax file.
  22.  
  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. Color xterms        |xterm-color|
  39.  
  40. {Vi does not have any of these commands}
  41.  
  42. Syntax highlighting is not available when the |+syntax| feature has been
  43. disabled at compile time.
  44.  
  45. ==============================================================================
  46. 1. Quick start                        *:syn-qstart*
  47.  
  48.                         *:syn-enable* *:syntax-enable*
  49. This command switches on syntax highlighting: >
  50.  
  51.     :syntax enable
  52.  
  53. What this command actually does is to execute the command >
  54.     :source $VIMRUNTIME/syntax/syntax.vim
  55.  
  56. If the VIM environment variable is not set, Vim will try to find
  57. the path in another way (see |$VIMRUNTIME|).  Usually this works just
  58. fine.  If it doesn't, try setting the VIM environment variable to the
  59. directory where the Vim stuff is located.  For example, if your syntax files
  60. are in the "/usr/vim/vim50/syntax" directory, set $VIMRUNTIME to
  61. "/usr/vim/vim50".  You must do this in the shell, before starting Vim.
  62.  
  63.                             *:syn-on* *:syntax-on*
  64. The ":syntax enable" command will keep your current color settings.  This
  65. allows using ":highlight" commands to set your preferred colors before or
  66. after using this command.  If you want Vim to overrule your settings with the
  67. defaults, use: >
  68.     :syntax on
  69. <
  70.                     *:hi-normal* *:highlight-normal*
  71. If you are running in the GUI, you can get white text on a black background
  72. with: >
  73.     :highlight Normal guibg=Black guifg=White
  74. For a color terminal see |:hi-normal-cterm|.
  75. For setting up your own colors syntax highlighting see |syncolor|.
  76.  
  77. NOTE: The syntax files on MS-DOS and Windows have lines that end in <CR><NL>.
  78. The files for Unix end in <NL>.  This means you should use the right type of
  79. file for your system.  Although on MS-DOS and Windows the right format is
  80. automatically selected if the 'fileformats' option is not empty.
  81.  
  82. NOTE: When using reverse video ("gvim -fg white -bg black"), the default value
  83. of 'background' will not be set until the GUI window is opened, which is after
  84. reading the .gvimrc.  This will cause the wrong default highlighting to be
  85. used.  To set the default value of 'background' before switching on
  86. highlighting, include the ":gui" command in the .gvimrc: >
  87.  
  88.    :gui        " open window and set default for 'background'
  89.    :syntax on    " start highlighting, use 'background' to set colors
  90.  
  91. NOTE: Using ":gui" in the .gvimrc means that "gvim -f" won't start in the
  92. foreground!  Use ":gui -f" then.
  93.  
  94.  
  95. You can toggle the syntax on/off with this command >
  96.    :if exists("syntax_on") | syntax off | else | syntax enable | endif
  97.  
  98. To put this into a mapping, you can use: >
  99.    :map <F7> :if exists("syntax_on") <Bar>
  100.     \   syntax off <Bar>
  101.     \ else <Bar>
  102.     \   syntax enable <Bar>
  103.     \ endif <CR>
  104. [using the |<>| notation, type this literally]
  105.  
  106. Details
  107. The ":syntax" commands are implemented by sourcing a file.  To see exactly how
  108. this works, look in the file:
  109.     command        file ~
  110.     :syntax enable    $VIMRUNTIME/syntax/syntax.vim
  111.     :syntax on        $VIMRUNTIME/syntax/syntax.vim
  112.     :syntax manual    $VIMRUNTIME/syntax/manual.vim
  113.     :syntax off        $VIMRUNTIME/syntax/nosyntax.vim
  114. Also see |syntax-loading|.
  115.  
  116. ==============================================================================
  117. 2. Syntax files                        *:syn-files*
  118.  
  119. The syntax and highlighting commands for one language are normally stored in
  120. a syntax file.  The name convention is: "{name}.vim".  Where {name} is the
  121. name of the language, or an abbreviation (to fit the name in 8.3 characters,
  122. a requirement in case the file is used on a DOS filesystem).
  123. Examples:
  124.     c.vim        perl.vim    java.vim    html.vim
  125.     cpp.vim        sh.vim        csh.vim
  126.  
  127. The syntax file can contain any Ex commands, just like a vimrc file.  But
  128. the idea is that only commands for a specific language are included.  When a
  129. language is a superset of another language, it may include the other one,
  130. for example, the cpp.vim file could include the c.vim file: >
  131.    :so $VIMRUNTIME/syntax/c.vim
  132.  
  133. The .vim files are normally loaded with an autocommand.  For example: >
  134.    :au Syntax c        source $VIMRUNTIME/syntax/c.vim
  135.    :au Syntax cpp   source $VIMRUNTIME/syntax/cpp.vim
  136. These commands are normally in the file $VIMRUNTIME/syntax/synload.vim.
  137.  
  138.  
  139. MAKING YOUR OWN SYNTAX FILES                *mysyntaxfile*
  140.  
  141. When you create your own syntax files, and you want to have Vim use these
  142. automatically with ":syntax enable", do this:
  143.  
  144. 1. Create your user runtime directory.  You would normally use the first item
  145.    of the 'runtimepath' option.  Example for Unix: >
  146.     mkdir ~/.vim
  147.  
  148. 2. Create a directory in there called "syntax".  For Unix: >
  149.     mkdir ~/.vim/syntax
  150.  
  151. 3. Write the Vim syntax file.  Or download one from the internet.  Then write
  152.    it in your syntax directory.  For example, for the "mine" syntax: >
  153.     :w ~/.vim/syntax/mine.vim
  154.  
  155. Now you can start using your syntax file manually: >
  156.     :set syntax=mine
  157. You don't have to exit Vim to use this.
  158.  
  159. If you also want Vim to detect the type of file, see |new-filetype|.
  160.  
  161. If you are setting up a system with many users and you don't want each user
  162. to add the same syntax file, you can use another directory from 'runtimepath'.
  163.  
  164.  
  165. ADDING TO AN EXISTING SYNTAX FILE        *mysyntaxfile-add*
  166.  
  167. If you are mostly satisfied with an existing syntax file, but would like to
  168. add a few items or change the highlighting, follow these steps:
  169.  
  170. 1. Create your user directory from 'runtimepath', see above.
  171.  
  172. 2. Create a directory in there called "after/syntax".  For Unix: >
  173.     mkdir ~/.vim/after
  174.     mkdir ~/.vim/after/syntax
  175.  
  176. 3. Write a Vim script that contains the commands you want to use.  For
  177.    example, to change the colors for the C syntax: >
  178.     highlight cComment ctermfg=Green guifg=Green
  179.  
  180. 4. Write that file in the "after/syntax" directory.  Use the name of the
  181.    syntax, with ".vim" added.  For our C syntax: >
  182.     :w ~/.vim/after/syntax/c.vim
  183.  
  184. That's it.  The next time you edit a C file the Comment color will be
  185. different.  You don't even have to restart Vim.
  186.  
  187.  
  188. REPLACING AN EXISTING SYNTAX FILE            *mysyntaxfile-replace*
  189.  
  190. If you don't like a distributed syntax file, or you have downloaded a new
  191. version, follow the same steps as for |mysyntaxfile| above.  Just make sure
  192. that you write the syntax file in a directory that is early in 'runtimepath'.
  193. Vim will only load the first syntax file found.
  194.  
  195.  
  196. NAMING CONVENTIONS
  197.                         *group-name* *{group-name}*
  198. The name for a highlight or syntax group must consist of ASCII letters, digits
  199. and the underscore.  As a regexp: "[a-zA-Z0-9_]*"
  200.  
  201. To be able to allow each user to pick his favorite set of colors, there must
  202. be preferred names for highlight groups that are common for many languages.
  203. These are the suggested group names:
  204.  
  205.     *Comment    any comment
  206.  
  207.     *Constant    any constant
  208.      String        a string constant: "this is a string"
  209.      Character    a character constant: 'c', '\n'
  210.      Number        a number constant: 234, 0xff
  211.      Boolean    a boolean constant: TRUE, false
  212.      Float        a floating point constant: 2.3e10
  213.  
  214.     *Identifier    any variable name
  215.      Function    function name (also: methods for classes)
  216.  
  217.     *Statement    any statement
  218.      Conditional    if, then, else, endif, switch, etc.
  219.      Repeat        for, do, while, etc.
  220.      Label        case, default, etc.
  221.      Operator    "sizeof", "+", "*", etc.
  222.      Keyword    any other keyword
  223.      Exception    try, catch, throw
  224.  
  225.     *PreProc    generic Preprocessor
  226.      Include    preprocessor #include
  227.      Define        preprocessor #define
  228.      Macro        same as Define
  229.      PreCondit    preprocessor #if, #else, #endif, etc.
  230.  
  231.     *Type        int, long, char, etc.
  232.      StorageClass    static, register, volatile, etc.
  233.      Structure    struct, union, enum, etc.
  234.      Typedef    A typedef
  235.  
  236.     *Special    any special symbol
  237.      SpecialChar    special character in a constant
  238.      Tag        you can use CTRL-] on this
  239.      Delimiter    character that needs attention
  240.      SpecialComment    special things inside a comment
  241.      Debug        debugging statements
  242.  
  243.     *Underlined    text that stands out, HTML links
  244.  
  245.     *Ignore        left blank, hidden
  246.  
  247.     *Error        any erroneous construct
  248.  
  249.     *Todo        anything that needs extra attention; mostly the
  250.             keywords TODO FIXME and XXX
  251.  
  252. The names marked with * are the preferred groups; the others are minor groups.
  253. For the preferred groups, the "syntax.vim" file contains default highlighting.
  254. The minor groups are linked to the preferred groups, so they get the same
  255. highlighting.  You can override these defaults by using ":highlight" commands
  256. after sourcing the "syntax.vim" file.
  257.  
  258. Note that highlight group names are not case sensitive.  "String" and "string"
  259. can be used for the same group.
  260.  
  261. The following names are reserved and cannot be used as a group name:
  262.     NONE   ALL   ALLBUT   contains   contained
  263.  
  264. ==============================================================================
  265. 3. Syntax loading procedure                *syntax-loading*
  266.  
  267. This explains the details that happen when the command ":syntax enable" is
  268. issued.  When Vim initializes itself, it finds out where the runtime files are
  269. located.  This is used here as the variable |$VIMRUNTIME|.
  270.  
  271. ":syntax enable" and ":syntax on" do the following:
  272.  
  273.     Source $VIMRUNTIME/syntax/syntax.vim
  274.     |
  275.     +-    Clear out any old syntax by sourcing $VIMRUNTIME/syntax/nosyntax.vim
  276.     |
  277.     +-    Source $VIMRUNTIME/syntax/synload.vim from 'runtimepath'
  278.     |    |
  279.     |    +-  Setup the colors for syntax highlighting.  If a color scheme is
  280.     |    |   defined it is loaded again with ":colors {name}".  Otherwise
  281.     |    |   ":runtime! syntax/syncolor.vim" is used.  ":syntax on" overrules
  282.     |    |   existing colors, ":syntax enable" only sets groups that weren't
  283.     |    |   set yet.
  284.     |    |
  285.     |    +-  Set up syntax autocmds to load the appropriate syntax file when
  286.     |    |   the 'syntax' option is set. *synload-1*
  287.     |    |
  288.     |    +-  Source the user's optional file, from the |mysyntaxfile| variable.
  289.     |        This is for backwards compatibility with Vim 5.x only. *synload-2*
  290.     |
  291.     +-    Do ":filetype on", which does ":runtime! filetype.vim".  It loads any
  292.     |    filetype.vim files found.  It should always Source
  293.     |    $VIMRUNTIME/filetype.vim, which does the following.
  294.     |    |
  295.     |    +-  Install autocmds based on suffix to set the 'filetype' option
  296.     |    |   This is where the connection between file name and file type is
  297.     |    |   made for known file types. *synload-3*
  298.     |    |
  299.     |    +-  Source the user's optional file, from the *myfiletypefile*
  300.     |    |   variable.  This is for backwards compatibility with Vim 5.x only.
  301.     |    |   *synload-4*
  302.     |    |
  303.     |    +-  Install one autocommand which sources scripts.vim when no file
  304.     |    |   type was detected yet. *synload-5*
  305.     |    |
  306.     |    +-  Source $VIMRUNTIME/menu.vim, to setup the Syntax menu. |menu.vim|
  307.     |
  308.     +-    Install a FileType autocommand to set the 'syntax' option when a file
  309.     |    type has been detected. *synload-6*
  310.     |
  311.     +-    Execute syntax autocommands to start syntax highlighting for each
  312.     already loaded buffer.
  313.  
  314.  
  315. Upon loading a file, Vim finds the relevant syntax file as follows:
  316.  
  317.     Loading the file triggers the BufReadPost autocommands.
  318.     |
  319.     +-    If there is a match with one of the autocommands from |synload-3|
  320.     |    (known file types) or |synload-4| (user's file types), the 'filetype'
  321.     |    option is set to the file type.
  322.     |
  323.     +-    The autocommand at |synload-5| is triggered.  If the file type was not
  324.     |    found yet, then scripts.vim is searched for in 'runtimepath'.  This
  325.     |    should always load $VIMRUNTIME/scripts.vim, which does the following.
  326.     |    |
  327.     |    +-  Source the user's optional file, from the *myscriptsfile*
  328.     |    |   variable.  This is for backwards compbatibility with Vim 5.x only.
  329.     |    |
  330.     |    +-  If the file type is still unknown, check the contents of the file,
  331.     |        again with checks like "getline(1) =~ pattern" as to whether the
  332.     |        file type can be recognized, and set 'filetype'.
  333.     |
  334.     +-    When the file type was determined and 'filetype' was set, this
  335.     |    triggers the FileType autocommand |synload-6| above.  It sets
  336.     |    'syntax' to the determined file type.
  337.     |
  338.     +-    When the 'syntax' option was set above, this triggers an autocommand
  339.     |    from |synload-1| (and |synload-2|).  This find the main syntax file in
  340.     |    'runtimepath', with this command:
  341.     |        runtime! syntax/<name>.vim
  342.     |
  343.     +-    Any other user installed FileType or Syntax autocommands are
  344.     triggered.  This can be used to change the highlighting for a specific
  345.     syntax.
  346.  
  347. ==============================================================================
  348. 4. Syntax file remarks                    *:syn-file-remarks*
  349.  
  350.                         *b:current_syntax-variable*
  351. Vim stores the name of the syntax that has been loaded in the
  352. "b:current_syntax" variable.  You can use this if you want to load other
  353. settings, depending on which syntax is active.  Example: >
  354.    :au BufReadPost * if b:current_syntax == "csh"
  355.    :au BufReadPost *   do-some-things
  356.    :au BufReadPost * endif
  357.  
  358.  
  359. 2HTML                        *2html.vim* *convert-to-HTML*
  360.  
  361. This is not a syntax file itself, but a script that converts the current
  362. window into HTML.  Vim opens a new window in which it builds the HTML file.
  363.  
  364. You are not supposed to set the 'filetype' or 'syntax' option to "2html"!
  365. Source the script to convert the current file: >
  366.  
  367.     :runtime! syntax/2html.vim
  368. <
  369. Warning: This is slow!
  370.                             *:TOhtml*
  371. Or use the ":TOhtml" user command.  It is defined in a standard plugin.
  372. ":TOhtml" also works with a range and in a Visual area: >
  373.  
  374.     :10,40TOhtml
  375.  
  376. After you save the resulting file, you can view it with any HTML viewer, such
  377. as Netscape.  The colors should be exactly the same as you see them in Vim.
  378.  
  379. To restrict the conversion to a range of lines set "html_start_line" and
  380. "html_end_line" to the first and last line to be converted.  Example, using
  381. the last set Visual area: >
  382.  
  383.     :let html_start_line = line("'<")
  384.     :let html_end_line = line("'>")
  385.  
  386. The lines are numbered according to 'number' option and the Number
  387. highlighting.  You can force lines to be numbered in the HTML output by
  388. setting "html_number_lines" to non-zero value: >
  389.    :let html_number_lines = 1
  390. Force to omit the line numbers by using a zero value: >
  391.    :let html_number_lines = 0
  392. Go back to the default to use 'number' by deleting the variable: >
  393.    :unlet html_number_lines
  394.  
  395. By default, HTML optimized for old browsers is generated.  If you prefer using
  396. cascading style sheets (CSS1) for the attributes (resulting in considerably
  397. shorter and valid HTML 4 file), use: >
  398.    :let html_use_css = 1
  399.  
  400. By default "<pre>" and "</pre>" is used around the text.  This makes it show
  401. up as you see it in Vim, but without wrapping.  If you prefer wrapping, at the
  402. risc of making some things look a bit different, use: >
  403.    :let html_no_pre = 1
  404. This will use <br> at the end of each line and use " " for repeated
  405. spaces.
  406.  
  407. The current value of 'encoding' is used to specify the charset of the HTML
  408. file.  This only works for those values of 'encoding' that have an equivalent
  409. HTML charset name.  To overrule this set g:html_use_encoding to the name of
  410. the charset to be used: >
  411.    :let html_use_encoding = "foobar"
  412. To omit the line that specifies the charset, set g:html_use_encoding to an
  413. empty string: >
  414.    :let html_use_encoding = ""
  415. To go back to the automatic mechanism, delete the g:html_use_encoding
  416. variable: >
  417.    :unlet html_use_encoding
  418.  
  419. Remarks:
  420. - This only works in a version with GUI support.  If the GUI is not actually
  421.   running (possible for X11) it still works, but not very well (the colors
  422.   may be wrong).
  423. - Older browsers will not show the background colors.
  424. - From most browsers you can also print the file (in color)!
  425.  
  426. Here is an example how to run the script over all .c and .h files from a
  427. Unix shell: >
  428.    for f in *.[ch]; do gvim -f +"syn on" +"run! syntax/2html.vim" +"wq" +"q" $f; done
  429. <
  430.  
  431. ABEL                            *abel.vim* *abel-syntax*
  432.  
  433. ABEL highlighting provides some user-defined options.  To enable them, assign
  434. any value to the respective variable.  Example: >
  435.     :let abel_obsolete_ok=1
  436. To disable them use ":unlet".  Example: >
  437.     :unlet abel_obsolete_ok
  438.  
  439. Variable            Highlight ~
  440. abel_obsolete_ok        obsolete keywords are statements, not errors
  441. abel_cpp_comments_illegal    do not interpret '//' as inline comment leader
  442.  
  443.  
  444. ADA                            *ada.vim* *ada-syntax*
  445.  
  446. This mode is designed for the 1995 edition of Ada ("Ada95"), which
  447. includes support for objected-programming, protected types, and so on.
  448. It handles code written for the original Ada language
  449. ("Ada83" or "Ada87") as well, though Ada83 code which uses Ada95-only
  450. keywords will be wrongly colored (such code should be fixed anyway).
  451. For more information about Ada, see http://www.adapower.com.
  452.  
  453. The Ada mode handles a number of situations cleanly.
  454. For example, it knows that the "-" in "-5" is a number, but the same
  455. character in "A-5" is an operator.  Normally, a "with" or "use" clause
  456. referencing another compilation unit is colored the same way as C's
  457. "#include" is colored.  If you have "Conditional" or "Repeat"
  458. groups colored differently, then "end if" and "end loop" will be
  459. colored as part of those respective groups.
  460. You can set these to different colors using vim's "highlight" command
  461. (e.g., to change how loops are displayed, enter the command
  462. ":hi Repeat" followed by the color specification; on simple terminals
  463. the color specification ctermfg=White often shows well).
  464.  
  465. There are several options you can select in this Ada mode.
  466. To enable them, assign a value to the option.  For example, to turn one on:
  467.    let ada_standard_types = 1
  468. To disable them use ":unlet".  Example:
  469.    unlet ada_standard_types = 1
  470. You can just use ":" and type these into the command line to set these
  471. temporarily before loading an Ada file.  You can make these option settings
  472. permanent by adding the "let" command(s), without a colon,
  473. to your "~/.vimrc" file.
  474.  
  475. Here are the Ada mode options:
  476.  
  477. Variable         Action    ~
  478. ada_standard_types     Highlight types in package Standard (e.g., "Float")
  479. ada_space_errors     Highlight extraneous errors in spaces...
  480. ada_no_trail_space_error   but ignore trailing spaces at the end of a line
  481. ada_no_tab_space_error       but ignore tabs after spaces
  482. ada_withuse_ordinary     Show "with" and "use" as ordinary keywords
  483.                (when used to reference other compilation units
  484.                they're normally highlighted specially).
  485. ada_begin_preproc     Show all begin-like keywords using the coloring
  486.                of C preprocessor commands.
  487.  
  488. Even on a slow (90Mhz) PC this mode works quickly, but if you find
  489. the performance unacceptable, turn on ada_withuse_ordinary.
  490.  
  491.  
  492. ANT                        *ant.vim* *ant-syntax*
  493.  
  494. The ant syntax file provides syntax highlighting for javascript and python
  495. by default. Syntax highlighting for other script languages can be installed
  496. by the function AntSyntaxScript(), which takes the tag name as first argument
  497. and the script syntax file name as second argument. Example: >
  498.  
  499.     :call AntSyntaxScript('perl', 'perl.vim')
  500.  
  501. will install syntax perl highlighting for the following ant code >
  502.  
  503.     <script language = 'perl'><![CDATA[
  504.         # everything inside is highlighted as perl
  505.     ]]></script>
  506.  
  507. See |mysyntaxfile-add| for installing script languages permanently.
  508.  
  509.  
  510. APACHE                        *apache.vim* *apache-syntax*
  511.  
  512. The apache syntax file provides syntax highlighting depending on Apache HTTP
  513. server version, by default for 1.3.x.  Set "apache_version" to Apache version
  514. (as a string) to get highlighting for another version.  Example: >
  515.  
  516.     :let apache_version = "2.0"
  517. <
  518.  
  519.         *asm.vim* *asmh8300.vim* *nasm.vim* *masm.vim* *asm68k*
  520. ASSEMBLY    *asm-syntax* *asmh8300-syntax* *nasm-syntax* *masm-syntax*
  521.         *asm68k-syntax*
  522.  
  523. Files matching "*.i" could be Progress or Assembly.  If the automatic detection
  524. doesn't work for you, or you don't edit Progress at all, use this in your
  525. startup vimrc: >
  526.    :let filetype_i = "asm"
  527. Replace "asm" with the type of assembly you use.
  528.  
  529. There are many types of assembly languages that all use the same file name
  530. extensions.  Therefore you will have to select the type yourself, or add a
  531. line in the assembly file that Vim will recognize.  Currently these syntax
  532. files are included:
  533.     asm        GNU assembly (the default)
  534.     asm68k        Motorola 680x0 assembly
  535.     asmh8300    Hitachi H-8300 version of GNU assembly
  536.     ia64        Intel Itanium 64
  537.     masm        Microsoft assembly (probably works for any 80x86)
  538.     nasm        Netwide assembly
  539.     tasm        Turbo Assembly (with opcodes 80x86 up to Pentium, and
  540.             MMX)
  541.     pic        PIC assembly (currently for PIC16F84)
  542.  
  543. The most flexible is to add a line in your assembly file containing: >
  544.     :asmsyntax=nasm
  545. Replace "nasm" with the name of the real assembly syntax.  This line must be
  546. one of the first five lines in the file.
  547.  
  548. The syntax type can always be overruled for a specific buffer by setting the
  549. b:asmsyntax variable: >
  550.     :let b:asmsyntax=nasm
  551.  
  552. If b:asmsyntax is not set, either automatically or by hand, then the value of
  553. the global variable asmsyntax is used.  This can be seen as a default assembly
  554. language: >
  555.     :let asmsyntax=nasm
  556.  
  557. As a last resort, if nothing is defined, the "asm" syntax is used.
  558.  
  559.  
  560. Netwide assembler (nasm.vim) optional highlighting ~
  561.  
  562. To enable a feature: >
  563.     :let   {variable}=1|set syntax=nasm
  564. To disable a feature: >
  565.     :unlet {variable}  |set syntax=nasm
  566.  
  567. Variable        Highlight ~
  568. nasm_loose_syntax    unofficial parser allowed syntax not as Error
  569.               (parser dependent; not recommended)
  570. nasm_ctx_outside_macro    contexts outside macro not as Error
  571. nasm_no_warn        potentially risky syntax not as ToDo
  572.  
  573.  
  574. ASPPERL and ASPVBS            *aspperl-syntax* *aspvbs-syntax*
  575.  
  576. *.asp and *.asa files could be either Perl or Visual Basic script.  Since it's
  577. hard to detect this you can set two global variables to tell Vim what you are
  578. using.  For Perl script use: >
  579.     :let g:filetype_asa = "aspperl"
  580.     :let g:filetype_asp = "aspperl"
  581. For Visual Basic use: >
  582.     :let g:filetype_asa = "aspvbs"
  583.     :let g:filetype_asp = "aspvbs"
  584.  
  585.  
  586. BASIC                *basic.vim* *vb.vim* *basic-syntax* *vb-syntax*
  587.  
  588. Both Visual Basic and "normal" basic use the extension ".bas".  To detect
  589. which one should be used, Vim checks for the string "VB_Name" in the first
  590. five lines of the file.  If it is not found, filetype will be "basic",
  591. otherwise "vb".  Files with the ".frm" extension will always be seen as Visual
  592. Basic.
  593.  
  594.  
  595. C                            *c.vim* *c-syntax*
  596.  
  597. A few things in C highlighting are optional.  To enable them assign any value
  598. to the respective variable.  Example: >
  599.     :let c_comment_strings=1
  600. To disable them use ":unlet".  Example: >
  601.     :unlet c_comment_strings
  602.  
  603. Variable        Highlight ~
  604. c_gnu            GNU gcc specific items
  605. c_comment_strings    strings and numbers inside a comment
  606. c_space_errors        trailing white space and spaces before a <Tab>
  607. c_no_trail_space_error     ... but no trailing spaces
  608. c_no_tab_space_error     ... but no spaces before a <Tab>
  609. c_no_bracket_error    don't highlight {}; inside [] as errors
  610. c_no_ansi        don't do standard ANSI types and constants
  611. c_ansi_typedefs         ... but do standard ANSI types
  612. c_ansi_constants     ... but do standard ANSI constants
  613. c_no_utf        don't highlight \u and \U in strings
  614. c_syntax_for_h        use C syntax for *.h files, instead of C++
  615. c_no_if0        don't highlight "#if 0" blocks as comments
  616. c_no_cformat        don't highlight %-formats in strings
  617. c_no_c99        don't highlight C99 standard items
  618.  
  619. If you notice highlighting errors while scrolling backwards, which are fixed
  620. when redrawing with CTRL-L, try setting the "c_minlines" internal variable
  621. to a larger number: >
  622.     :let c_minlines = 100
  623. This will make the syntax synchronization start 100 lines before the first
  624. displayed line.  The default value is 50 (15 when c_no_if0 is set).  The
  625. disadvantage of using a larger number is that redrawing can become slow.
  626.  
  627. When using the "#if 0" / "#endif" comment highlighting, notice that this only
  628. works when the "#if 0" is within "c_minlines" from the top of the window.  If
  629. you have a long "#if 0" construct it will not be highlighted correctly.
  630.  
  631. To match extra items in comments, use the cCommentGroup cluster.
  632. Example: >
  633.    :au Syntax c call MyCadd()
  634.    :function MyCadd()
  635.    :  syn keyword cMyItem contained Ni
  636.    :  syn cluster cCommentGroup add=cMyItem
  637.    :  hi link cMyItem Title
  638.    :endfun
  639.  
  640. ANSI constants will be highlighted with the "cConstant" group.  This includes
  641. "NULL", "SIG_IGN" and others.  But not "TRUE", for example, because this is
  642. not in the ANSI standard.  If you find this confusing, remove the cConstant
  643. highlighting: >
  644.     :hi link cConstant NONE
  645.  
  646. If you see '{' and '}' highlighted as an error where they are OK, reset the
  647. highlighting for cErrInParen and cErrInBracket.
  648.  
  649.  
  650. CHANGELOG                *changelog.vim* *changelog-syntax*
  651.  
  652. ChangeLog supports highlighting spaces at the start of a line.
  653. If you do not like this, add following line to your .vimrc: >
  654.     let g:changelog_spacing_errors = 0
  655. This works the next time you edit a changelog file.  You can also use
  656. "b:changelog_spacing_errors" to set this per buffer (before loading the syntax
  657. file).
  658.  
  659. You can change the highlighting used, e.g., to flag the spaces as an error: >
  660.     :hi link ChangelogError Error
  661. Or to avoid the highlighting: >
  662.     :hi link ChangelogError NONE
  663. This works immediately.
  664.  
  665.  
  666. COBOL                        *cobol.vim* *cobol-syntax*
  667.  
  668. COBOL highlighting has different needs for legacy code than it does for fresh
  669. development.  This is due to differences in what is being done (maintenance
  670. versus development) and other factors.  To enable legacy code highlighting,
  671. add this line to your .vimrc: >
  672.     :let cobol_legacy_code = 1
  673. To disable it again, use this: >
  674.     :unlet cobol_legacy_code
  675.  
  676.  
  677. COLD FUSION                *coldfusion.vim* *coldfusion-syntax*
  678.  
  679. The ColdFusion has its own version of HTML comments. To turn on ColdFusion
  680. comment highlighting, add the following line to your startup file: >
  681.  
  682.     :let html_wrong_comments = 1
  683.  
  684. The ColdFusion syntax file is based on the HTML syntax file.
  685.  
  686.  
  687. CYNLIB                        *cynlib.vim* *cynlib-syntax*
  688.  
  689. Cynlib files are C++ files that use the Cynlib class library to enable
  690. hardware modelling and simulation using C++. Typically Cynlib files have a .cc
  691. or a .cpp extension, which makes it very difficult to distinguish them from a
  692. normal C++ file. Thus, to enable Cynlib highlighting for .cc files, add this
  693. line to your .vimrc file: >
  694.  
  695.     :let cynlib_cyntax_for_cc=1
  696.  
  697. Similarly for cpp files (this extension is only usually used in Windows) >
  698.  
  699.     :let cynlib_cyntax_for_cpp=1
  700.  
  701. To disable these again, use this: >
  702.  
  703.     :unlet cynlib_cyntax_for_cc
  704.     :unlet cynlib_cyntax_for_cpp
  705. <
  706.  
  707. CWEB                        *cweb.vim* *cweb-syntax*
  708.  
  709. Files matching "*.w" could be Progress or cweb.  If the automatic detection
  710. doesn't work for you, or you don't edit Progress at all, use this in your
  711. startup vimrc: >
  712.    :let filetype_w = "cweb"
  713.  
  714.  
  715. DOSBATCH                *dosbatch.vim* *dosbatch-syntax*
  716.  
  717. There is one option with highlighting DOS batch files.  This covers new
  718. extensions to the Command Interpreter introduced with Windows 2000 and
  719. is controlled by the variable dosbatch_cmdextversion.  For Windows NT
  720. this should have the value 1, and for Windows 2000 it should be 2.
  721. Select the version you want with the following line: >
  722.  
  723.   :let dosbatch_cmdextversion = 1
  724.  
  725. If this variable is not defined it defaults to a value of 2 to support
  726. Windows 2000.
  727.  
  728.  
  729. DTD                        *dtd.vim* *dtd-syntax*
  730.  
  731. The DTD syntax highlighting is case sensitive by default. To disable
  732. case-sensitive highlighting, add the following line to your startup file: >
  733.  
  734.     :let dtd_ignore_case=1
  735.  
  736. The DTD syntax file will highlight unknown tags as errors. If
  737. this is annoying, it can be turned off by setting: >
  738.  
  739.     :let dtd_no_tag_errors=1
  740.  
  741. before sourcing the dtd.vim syntax file.
  742. Parameter entity names are highlighted in the definition using the
  743. 'Type' highlighting group and 'Comment' for punctuation and '%'.
  744. Parameter entity instances are highlighted using the 'Constant'
  745. highlighting group and the 'Type' highlighting group for the
  746. delimiters % and ;. This can be turned off by setting: >
  747.  
  748.     :let dtd_no_param_entities=1
  749.  
  750. The DTD syntax file is also included by xml.vim to highlight included dtd's.
  751.  
  752.  
  753. EIFFEL                        *eiffel.vim* *eiffel-syntax*
  754.  
  755. While Eiffel is not case-sensitive, its style guidelines are, and the
  756. syntax highlighting file encourages their use. This also allows to
  757. highlight class names differently. If you want to disable case-sensitive
  758. highlighting, add the following line to your startup file: >
  759.  
  760.     :let eiffel_ignore_case=1
  761.  
  762. Case still matters for class names and TODO marks in comments.
  763.  
  764. Conversely, for even stricter checks, add one of the following lines: >
  765.  
  766.     :let eiffel_strict=1
  767.     :let eiffel_pedantic=1
  768.  
  769. Setting eiffel_strict will only catch improper capitalization for the
  770. five predefined words "Current", "Void", "Result", "Precursor", and
  771. "NONE", to warn against their accidental use as feature or class names.
  772.  
  773. Setting eiffel_pedantic will enforce adherence to the Eiffel style
  774. guidelines fairly rigorously (like arbitrary mixes of upper- and
  775. lowercase letters as well as outdated ways to capitalize keywords).
  776.  
  777. If you want to use the lower-case version of "Current", "Void",
  778. "Result", and "Precursor", you can use >
  779.  
  780.     :let eiffel_lower_case_predef=1
  781.  
  782. instead of completely turning case-sensitive highlighting off.
  783.  
  784. Support for ISE's proposed new creation syntax that is already
  785. experimentally handled by some compilers can be enabled by: >
  786.  
  787.     :let eiffel_ise=1
  788.  
  789. Finally, some vendors support hexadecimal constants. To handle them, add >
  790.  
  791.     :let eiffel_hex_constants=1
  792.  
  793. to your startup file.
  794.  
  795.  
  796. ERLANG                        *erlang.vim* *erlang-syntax*
  797.  
  798. The erlang highlighting supports Erlang (ERicsson LANGuage).
  799. Erlang is case sensitive and default extension is ".erl".
  800.  
  801. If you want to disable keywords highlighting, put in your .vimrc: >
  802.     :let erlang_keywords = 1
  803. If you want to disable built-in-functions highlighting, put in your
  804. .vimrc file: >
  805.     :let erlang_functions = 1
  806. If you want to disable special characters highlighting, put in
  807. your .vimrc: >
  808.     :let erlang_characters = 1
  809.  
  810.  
  811. FORM                        *form.vim* *form-syntax*
  812.  
  813. The coloring scheme for syntax elements in the FORM file uses the default
  814. modes Conditional, Number, Statement, Comment, PreProc, Type, and String,
  815. following the language specifications in 'Symbolic Manipulation with FORM'' by
  816. J.A.M. Vermaseren, CAN, Netherlands, 1991.
  817.  
  818. If you want include your own changes to the default colors, you have to
  819. redefine the following syntax groups:
  820.  
  821.     - formConditional
  822.     - formNumber
  823.     - formStatement
  824.     - formHeaderStatement
  825.     - formComment
  826.     - formPreProc
  827.     - formDirective
  828.     - formType
  829.     - formString
  830.  
  831. Note that the form.vim syntax file implements FORM preprocessor commands and
  832. directives per default in the same syntax group.
  833.  
  834. A predefined enhanced color mode for FORM is available to distinguish between
  835. header statements and statements in the body of a FORM program. To activate
  836. this mode define the following variable in your vimrc file >
  837.  
  838.     :let form_enhanced_color=1
  839.  
  840. The enhanced mode also takes advantage of additional color features for a dark
  841. gvim display. Here, statements are colored LightYellow instead of Yellow, and
  842. conditionals are LightBlue for better distinction.
  843.  
  844.  
  845. FORTRAN                    *fortran.vim* *fortran-syntax*
  846.  
  847. Default highlighting and dialect ~
  848. Highlighting appropriate for f95 (Fortran 95) is used by default. This choice
  849. should be appropriate for most users most of the time because Fortran 95 is a
  850. superset of Fortran 90 and almost a superset of Fortran 77.
  851.  
  852. Fortran source code form ~
  853. Fortran 9x code can be in either fixed or free source form. Note that the
  854. syntax highlighting will not be correct if the form is incorrectly set.
  855.  
  856. When you create a new fortran file, the syntax script assumes fixed source
  857. form. If you always use free source form, then >
  858.     :let fortran_free_source=1
  859. in your .vimrc prior to the :syntax on command. If you always use fixed source
  860. form, then >
  861.     :let fortran_fixed_source=1
  862. in your .vimrc prior to the :syntax on command.
  863.  
  864. If the form of the source code depends upon the file extension, then it is
  865. most convenient to set fortran_free_source in a ftplugin file. For more
  866. information on ftplugin files, see |ftplugin|. For example, if all your
  867. fortran files with an .f90 extension are written in free source form and the
  868. rest in fixed source form, add the following code to your ftplugin file >
  869.     let s:extfname = expand("%:e")
  870.     if s:extfname ==? "f90"
  871.     let fortran_free_source=1
  872.     unlet! fortran_fixed_source
  873.     else
  874.     let fortran_fixed_source=1
  875.     unlet! fortran_free_source
  876.     endif
  877. Note that this will work only if the "filetype plugin indent on" command
  878. precedes the "syntax on" command in your .vimrc file.
  879.  
  880. When you edit an existing fortran file, the syntax script will assume free
  881. source form if the fortran_free_source variable has been set, and assumes
  882. fixed source form if the fortran_fixed_source variable has been set. If
  883. neither of these variables have been set, the syntax script attempts to
  884. determine which source form has been used by examining the first five columns
  885. of the first 25 lines of your file. If no signs of free source form are
  886. detected, then the file is assumed to be in fixed source form. The algorithm
  887. should work in the vast majority of cases. In some cases, such as a file that
  888. begins with 25 or more full-line comments, the script may incorrectly decide
  889. that the fortran code is in fixed form. If that happens, just add a
  890. non-comment statement beginning anywhere in the first five columns of the
  891. first twenty five lines, save (:w) and then reload (:e!) the file.
  892.  
  893. Tabs in fortran files ~
  894. Tabs are not recognized by the Fortran standards. Tabs are not a good idea in
  895. fixed format fortran source code which requires fixed column boundaries.
  896. Therefore, tabs are marked as errors. Nevertheless, some programmers like
  897. using tabs. If your fortran files contain tabs, then you should set the
  898. variable fortran_have_tabs in your .vimrc with a command such as >
  899.     :let fortran_have_tabs=1
  900. placed prior to the :syntax on command. Unfortunately, the use of tabs will
  901. mean that the syntax file will not be able to detect incorrect margins.
  902.  
  903. Syntax folding of fortran files ~
  904. If you wish to use foldmethod=syntax, then you must first set the variable
  905. fortran_fold with a command such as >
  906.     :let fortran_fold=1
  907. to instruct the syntax script to define fold regions for program units, that
  908. is main programs starting with a program statement, subroutines, function
  909. subprograms, block data subprograms, interface blocks, and modules. If you
  910. also set the variable fortran_fold_conditionals with a command such as >
  911.     :let fortran_fold_conditionals=1
  912. then fold regions will also be defined for do loops, if blocks, and select
  913. case constructs. If you also set the variable
  914. fortran_fold_multilinecomments with a command such as >
  915.     :let fortran_fold_multilinecomments=1
  916. then fold regions will also be defined for three or more consecutive comment
  917. lines. Note that defining fold regions can be slow for large files.
  918.  
  919. If fortran_fold, and possibly fortran_fold_conditionals and/or
  920. fortran_fold_multilinecomments, have been set, then vim will fold your file if
  921. you set foldmethod=syntax. Comments or blank lines placed between two program
  922. units are not folded because they are seen as not belonging to any program
  923. unit.
  924.  
  925. More precise fortran syntax ~
  926. If you set the variable fortran_more_precise with a command such as >
  927.     :let fortran_more_precise=1
  928. then the syntax coloring will be more precise but slower. In particular,
  929. statement labels used in do, goto and arithmetic if statements will be
  930. recognized, as will construct names at the end of a do, if, select or forall
  931. construct.
  932.  
  933. Non-default fortran dialects ~
  934. The syntax script supports five Fortran dialects: f95, f90, f77, the Lahey
  935. subset elf90, and the Imagine1 subset F.
  936.  
  937. If you use f77 with extensions, even common ones like do/enddo loops, do/while
  938. loops and free source form that are supported by most f77 compilers including
  939. g77 (GNU Fortran), then you will probably find the default highlighting
  940. satisfactory. However, if you use strict f77 with no extensions, not even free
  941. source form or the MIL STD 1753 extensions, then the advantages of setting the
  942. dialect to f77 are that names such as SUM are recognized as user variable
  943. names and not highlighted as f9x intrinsic functions, that obsolete constructs
  944. such as ASSIGN statements are not highlighted as todo items, and that fixed
  945. source form will be assumed.
  946.  
  947. If you use elf90 or F, the advantage of setting the dialect appropriately is
  948. that f90 features excluded from these dialects will be highlighted as todo
  949. items and that free source form will be assumed as required for these
  950. dialects.
  951.  
  952. The dialect can be selected by setting the variable fortran_dialect. The
  953. permissible values of fortran_dialect are case-sensitive and must be "f95",
  954. "f90", "f77", "elf" or "F". Invalid values of fortran_dialect are ignored.
  955.  
  956. If all your fortran files use the same dialect, set fortran_dialect in your
  957. .vimrc prior to your syntax on statement. If the dialect depends upon the file
  958. extension, then it is most convenient to set it in a ftplugin file. For more
  959. information on ftplugin files, see |ftplugin|. For example, if all your
  960. fortran files with an .f90 extension are written in the elf subset, your
  961. ftplugin file should contain the code >
  962.     let s:extfname = expand("%:e")
  963.     if s:extfname ==? "f90"
  964.     let fortran_dialect="elf"
  965.     else
  966.     unlet! fortran_dialect
  967.     endif
  968. Note that this will work only if the "filetype plugin indent on" command
  969. precedes the "syntax on" command in your .vimrc file.
  970.  
  971. Finer control is necessary if the file extension does not uniquely identify
  972. the dialect. You can override the default dialect, on a file-by-file basis, by
  973. including a comment with the directive "fortran_dialect=xx" (where xx=f77 or
  974. elf or F or f90 or f95) in one of the first three lines in your file. For
  975. example, your older .f files may be written in extended f77 but your newer
  976. ones may be F codes, and you would identify the latter by including in the
  977. first three lines of those files a Fortran comment of the form >
  978.   ! fortran_dialect=F
  979. F overrides elf if both directives are present.
  980.  
  981. Limitations ~
  982. Parenthesis checking does not catch too few closing parentheses. Hollerith
  983. strings are not recognized. Some keywords may be highlighted incorrectly
  984. because Fortran90 has no reserved words.
  985.  
  986. For further information related to fortran, see |fortran-indent| and
  987. |fortran-plugin|.
  988.  
  989.  
  990. FVWM CONFIGURATION FILES            *fvwm.vim* *fvwm-syntax*
  991.  
  992. In order for Vim to recognize Fvwm configuration files that do not match
  993. the patterns *fvwmrc* or *fvwm2rc* , you must put additional patterns
  994. appropriate to your system in your myfiletypes.vim file.  For these
  995. patterns, you must set the variable "b:fvwm_version" to the major version
  996. number of Fvwm, and the 'filetype' option to fvwm.
  997.  
  998. For example, to make Vim identify all files in /etc/X11/fvwm2/
  999. as Fvwm2 configuration files, add the following: >
  1000.  
  1001.   :au! BufNewFile,BufRead /etc/X11/fvwm2/*  let b:fvwm_version = 2 |
  1002.                      \ set filetype=fvwm
  1003.  
  1004. If you'd like Vim to highlight all valid color names, tell it where to
  1005. find the color database (rgb.txt) on your system.  Do this by setting
  1006. "rgb_file" to its location.  Assuming your color database is located
  1007. in /usr/X11/lib/X11/, you should add the line >
  1008.  
  1009.     :let rgb_file = "/usr/X11/lib/X11/rgb.txt"
  1010.  
  1011. to your .vimrc file.
  1012.  
  1013.  
  1014. GSP                            *gsp.vim*
  1015.  
  1016. The default coloring style for GSP pages is defined by |html.vim|, and
  1017. the coloring for java code (within java tags or inline between backticks)
  1018. is defined by |java.vim|.  The following HTML groups defined in |html.vim|
  1019. are redefined to incorporate and highlight inline java code:
  1020.  
  1021.     htmlString
  1022.     htmlValue
  1023.     htmlEndTag
  1024.     htmlTag
  1025.     htmlTagN
  1026.  
  1027. Highlighting should look fine most of the places where you'd see inline
  1028. java code, but in some special cases it may not.  To add another HTML
  1029. group where you will have inline java code where it does not highlight
  1030. correctly, just copy the line you want from |html.vim| and add gspJava
  1031. to the contains clause.
  1032.  
  1033. The backticks for inline java are highlighted according to the htmlError
  1034. group to make them easier to see.
  1035.  
  1036.  
  1037. GROFF                        *groff.vim* *groff-syntax*
  1038.  
  1039. The groff syntax file is a wrapper for |nroff.vim|. See the notes under
  1040. that heading.  You can use this wrapper to create a filetype mapping
  1041. that uses groff syntax features by default, instead of the mappings
  1042. defined in filetype.vim.
  1043.  
  1044.  
  1045. HTML                        *html.vim* *html-syntax*
  1046.  
  1047. The coloring scheme for tags in the HTML file works as follows.
  1048.  
  1049. The  <> of opening tags are colored differently than the </> of a closing tag.
  1050. This is on purpose! For opening tags the 'Function' color is used, while for
  1051. closing tags the 'Type' color is used (See syntax.vim to check how those are
  1052. defined for you)
  1053.  
  1054. Known tag names are colored the same way as statements in C.  Unknown tag
  1055. names are colored with the same color as the <> or </> respectively which
  1056. makes it easy to spot errors
  1057.  
  1058. Note that the same is true for argument (or attribute) names. Known attribute
  1059. names are colored differently than unknown ones.
  1060.  
  1061. Some HTML tags are used to change the rendering of text. The following tags
  1062. are recognized by the html.vim syntax coloring file and change the way normal
  1063. text is shown: <B> <I> <U> <EM> <STRONG> (<EM> is used as an alias for <I>,
  1064. while <STRONG> as an alias for <B>), <H1> - <H6>, <HEAD>, <TITLE> and <A>, but
  1065. only if used as a link that is, it must include a href as in
  1066. <A href="somfile.html">).
  1067.  
  1068. If you want to change how such text is rendered, you must redefine the
  1069. following syntax groups:
  1070.  
  1071.     - htmlBold
  1072.     - htmlBoldUnderline
  1073.     - htmlBoldUnderlineItalic
  1074.     - htmlUnderline
  1075.     - htmlUnderlineItalic
  1076.     - htmlItalic
  1077.     - htmlTitle for titles
  1078.     - htmlH1 - htmlH6 for headings
  1079.  
  1080. To make this redefinition work you must redefine them all with the exception
  1081. of the last two (htmlTitle and htmlH[1-6], which are optional) and define the
  1082. following variable in your vimrc (this is due to the order in which the files
  1083. are read during initialization) >
  1084.     :let html_my_rendering=1
  1085.  
  1086. If you'd like to see an example download mysyntax.vim at
  1087. http://www.fleiner.com/vim/mysyntax.vim
  1088.  
  1089. You can also disable this rendering by adding the following line to your
  1090. vimrc file: >
  1091.     :let html_no_rendering=1
  1092.  
  1093. HTML comments are rather special (see an HTML reference document for the
  1094. details), and the syntax coloring scheme will highlight all errors.
  1095. However, if you prefer to use the wrong style (starts with <!-- and
  1096. ends with --!>) you can define >
  1097.     :let html_wrong_comments=1
  1098.  
  1099. JavaScript and Visual Basic embedded inside HTML documents are highlighted as
  1100. 'Special' with statements, comments, strings and so on colored as in standard
  1101. programming languages. Note that only JavaScript and Visual Basic are currently
  1102. supported, no other scripting language has been added yet.
  1103.  
  1104. Embedded and inlined cascading style sheets (CSS) are highlighted too.
  1105.  
  1106. There are several html preprocessor languages out there. html.vim has been
  1107. written such that it should be trivial to include it. To do so add the
  1108. following two lines to the syntax coloring file for that language
  1109. (the example comes from the asp.vim file):
  1110.  
  1111.     runtime! syntax/html.vim
  1112.     syn cluster htmlPreproc add=asp
  1113.  
  1114. Now you just need to make sure that you add all regions that contain
  1115. the preprocessor language to the cluster htmlPreproc.
  1116.  
  1117.  
  1118. HTML/OS (by Aestiva)                *htmlos.vim* *htmlos-syntax*
  1119.  
  1120. The coloring scheme for HTML/OS works as follows:
  1121.  
  1122. Functions and variable names are the same color by default, because VIM
  1123. doesn't specify different colors for Functions and Identifiers.  To change
  1124. this (which is recommended if you want function names to be recognizable in a
  1125. different color) you need to add the following line to either your ~/.vimrc: >
  1126.   :hi Function term=underline cterm=bold ctermfg=LightGray
  1127.  
  1128. Of course, the ctermfg can be a different color if you choose.
  1129.  
  1130. Another issues that HTML/OS runs into is that there is no special filetype to
  1131. signify that it is a file with HTML/OS coding.  You can change this by opening
  1132. a file and turning on HTML/OS syntax by doing the following: >
  1133.   :set syntax=htmlos
  1134.  
  1135. Lastly, it should be noted that the opening and closing characters to begin a
  1136. block of HTML/OS code can either be << or [[ and >> or ]], respectively.
  1137.  
  1138.  
  1139. IA64                *ia64.vim* *intel-itanium* *ia64-syntax*
  1140.  
  1141. Highlighting for the Intel Itanium 64 assembly language.  See |asm.vim| for
  1142. how to recognize this filetype.
  1143.  
  1144. To have *.inc files be recognized as IA64, add this to your .vimrc file: >
  1145.     :let g:filetype_inc = "ia64"
  1146.  
  1147.  
  1148. INFORM                        *inform.vim* *inform-syntax*
  1149.  
  1150. Inform highlighting includes symbols provided by the Inform Library, as
  1151. most programs make extensive use of it.  If do not wish Library symbols
  1152. to be highlighted add this to your vim startup: >
  1153.     :let inform_highlight_simple=1
  1154.  
  1155. By default it is assumed that Inform programs are Z-machine targeted,
  1156. and highlights Z-machine assembly language symbols appropriately.  If
  1157. you intend your program to be targeted to a Glulx/Glk environment you
  1158. need to add this to your startup sequence: >
  1159.     :let inform_highlight_glulx=1
  1160.  
  1161. This will highlight Glulx opcodes instead, and also adds glk() to the
  1162. set of highlighted system functions.
  1163.  
  1164. The Inform compiler will flag certain obsolete keywords as errors when
  1165. it encounters them.  These keywords are normally highlighted as errors
  1166. by Vim.  To prevent such error highlighting, you must add this to your
  1167. startup sequence: >
  1168.     :let inform_suppress_obsolete=1
  1169.  
  1170.  
  1171. JAVA                        *java.vim* *java-syntax*
  1172.  
  1173. The java.vim syntax highlighting file offers several options:
  1174.  
  1175. In Java 1.0.2 it was never possible to have braces inside parens, so this was
  1176. flagged as an error.  Since Java 1.1 this is possible (with anonymous
  1177. classes), and therefore is no longer marked as an error. If you prefer the old
  1178. way, put the following line into your vim startup file: >
  1179.     :let java_mark_braces_in_parens_as_errors=1
  1180.  
  1181. All identifiers in java.lang.* are always visible in all classes.  To
  1182. highlight them use: >
  1183.     :let java_highlight_java_lang_ids=1
  1184.  
  1185. You can also highlight identifiers of most standard java packages if you
  1186. download the script at http://www.fleiner.com/vim/syntax/javaid.vim
  1187. If you prefer to only highlight identifiers of a certain package, say java.io
  1188. use the following: >
  1189.     :let java_highligh_java_io=1
  1190. Check the javaid.vim file for a list of all the packages that are supported.
  1191.  
  1192. Function names are not highlighted, as the way to find functions depends on
  1193. how you write java code.  The syntax file knows two possible ways to highlight
  1194. functions:
  1195.  
  1196. If you write function declarations that are always indented by either
  1197. a tab, 8 spaces or 2 spaces you may want to set >
  1198.     :let java_highlight_functions="indent"
  1199. However, if you follow the Java guidelines about how functions and classes are
  1200. supposed to be named (with respect to upper and lowercase), use >
  1201.     :let java_highlight_functions="style"
  1202. If both options do not work for you, but you would still want function
  1203. declarations to be highlighted create your own definitions by changing the
  1204. definitions in java.vim or by creating your own java.vim which includes the
  1205. original one and then adds the code to highlight functions.
  1206.  
  1207. In java 1.1 the functions System.out.println() and System.err.println() should
  1208. only be used for debugging. Therefor it is possible to highlight debugging
  1209. statements differently. To do this you must add the following definition in
  1210. your startup file: >
  1211.     :let java_highlight_debug=1
  1212. The result will be that those statements are highlighted as 'Special'
  1213. characters. If you prefer to have them highlighted differently you must define
  1214. new highlightings for the following groups.:
  1215.     Debug, DebugSpecial, DebugString, DebugBoolean, DebugType
  1216. which are used for the statement itself, special characters used in debug
  1217. strings, strings, boolean constants and types (this, super) respectively. I
  1218. have opted to chose another background for those statements.
  1219.  
  1220. In order to help you to write code that can be easely ported between
  1221. java and C++, all C++ keywords are marked as error in a java program.
  1222. However, if you use them regularly, you may want to define the following
  1223. variable in your .vimrc file: >
  1224.     :let java_allow_cpp_keywords=1
  1225.  
  1226. Javadoc is a program that takes special comments out of java program files and
  1227. creates HTML pages. The standard configuration will highlight this HTML code
  1228. similarly to HTML files (see |html.vim|). You can even add javascript
  1229. and CSS inside this code (see below). There are four differences however:
  1230.   1. The title (all characters up to the first '.' which is followed by
  1231.      some white space or up to the first '@') is colored differently (to change
  1232.      the color change the group CommentTitle).
  1233.   2. The text is colored as 'Comment'.
  1234.   3. HTML comments are colored as 'Special'
  1235.   4. The special javadoc tags (@see, @param, ...) are highlighted as specials
  1236.      and the argument (for @see, @param, @exception) as Function.
  1237. To turn this feature off add the following line to your startup file: >
  1238.     :let java_ignore_javadoc=1
  1239.  
  1240. If you use the special javadoc comment highlighting described above you
  1241. can also turn on special highlighting for javascript, visual basic
  1242. scripts and embedded CSS (stylesheets). This makes only sense if you
  1243. actually have javadoc comments that include either javascript or embedded
  1244. CSS. The options to use are >
  1245.     :let java_javascript=1
  1246.     :let java_css=1
  1247.     :let java_vb=1
  1248.  
  1249. In order to highlight nested parens with different colors define colors
  1250. for javaParen, javaParen1 and javaParen2, for example with >
  1251.     :hi link javaParen Comment
  1252. or >
  1253.     :hi javaParen ctermfg=blue guifg=#0000ff
  1254.  
  1255. If you notice highlighting errors while scrolling backwards, which are fixed
  1256. when redrawing with CTRL-L, try setting the "java_minlines" internal variable
  1257. to a larger number: >
  1258.     :let java_minlines = 50
  1259. This will make the syntax synchronization start 50 lines before the first
  1260. displayed line.  The default value is 10.  The disadvantage of using a larger
  1261. number is that redrawing can become slow.
  1262.  
  1263.  
  1264. LACE                        *lace.vim* *lace-syntax*
  1265.  
  1266. Lace (Language for Assembly of Classes in Eiffel) is case insensitive, but the
  1267. style guide lines are not.  If you prefer case insensitive highlighting, just
  1268. define the vim variable 'lace_case_insensitive' in your startup file: >
  1269.     :let lace_case_insensitive=1
  1270.  
  1271.  
  1272. LEX                        *lex.vim* *lex-syntax*
  1273.  
  1274. Lex uses brute-force synchronizing as the "^%%$" section delimiter
  1275. gives no clue as to what section follows.  Consequently, the value for >
  1276.     :syn sync minlines=300
  1277. may be changed by the user if s/he is experiencing synchronization
  1278. difficulties (such as may happen with large lex files).
  1279.  
  1280.  
  1281. LITE                        *lite.vim* *lite-syntax*
  1282.  
  1283. There are two options for the lite syntax highlighting.
  1284.  
  1285. If you like SQL syntax highlighting inside Strings, use this: >
  1286.  
  1287.     :let lite_sql_query = 1
  1288.  
  1289. For syncing, minlines defaults to 100.  If you prefer another value, you can
  1290. set "lite_minlines" to the value you desire.  Example: >
  1291.  
  1292.     :let lite_minlines = 200
  1293.  
  1294.  
  1295. LPC                        *lpc.vim* *lpc-syntax*
  1296.  
  1297. LPC stands for a simple, memory-efficient language: Lars Pensj| C. The
  1298. file name of LPC is usually *.c.  Recognizing these files as LPC would bother
  1299. users writing only C programs.  If you want to use LPC syntax in Vim, you
  1300. should set a variable in your .vimrc file: >
  1301.  
  1302.     :let lpc_syntax_for_c = 1
  1303.  
  1304. If it doesn't work properly for some particular C or LPC files, use a
  1305. modeline.  For a LPC file:
  1306.  
  1307.     // vim:set ft=lpc:
  1308.  
  1309. For a C file that is recognized as LPC:
  1310.  
  1311.     // vim:set ft=c:
  1312.  
  1313. If you don't want to set the variable, use the modeline in EVERY LPC file.
  1314.  
  1315. There are several implementations for LPC, we intend to support most widely
  1316. used ones. Here the default LPC syntax is for MudOS series, for MudOS v22
  1317. and before, you should turn off the sensible modifiers, and this will also
  1318. asserts the new efuns after v22 to be invalid, don't set this variable when
  1319. you are using the latest version of MudOS: >
  1320.  
  1321.     :let lpc_pre_v22 = 1
  1322.  
  1323. For LpMud 3.2 series of LPC: >
  1324.  
  1325.     :let lpc_compat_32 = 1
  1326.  
  1327. For LPC4 series of LPC: >
  1328.  
  1329.     :let lpc_use_lpc4_syntax = 1
  1330.  
  1331. For uLPC series of LPC:
  1332. uLPC has been developed to Pike, so you should use Pike syntax
  1333. instead, and the name of your source file shoud be *.pike
  1334.  
  1335.  
  1336. LUA                        *lua.vim* *lua-syntax*
  1337.  
  1338. This syntax file may be used for Lua 4.0 and Lua 5.0 (default). If you are
  1339. programming in Lua 4.0, use this: >
  1340.  
  1341.     :let lua_version = 4
  1342.  
  1343. If lua_version variable doesn't exist, it is set to 5.
  1344.  
  1345.  
  1346. MAPLE                        *maple.vim* *maple-syntax*
  1347.  
  1348. Maple V, by Waterloo Maple Inc, supports symbolic algebra.  The language
  1349. supports many packages of functions which are selectively loaded by the user.
  1350. The standard set of packages' functions as supplied in Maple V release 4 may be
  1351. highlighted at the user's discretion.  Users may place in their .vimrc file: >
  1352.  
  1353.     :let mvpkg_all= 1
  1354.  
  1355. to get all package functions highlighted, or users may select any subset by
  1356. choosing a variable/package from the table below and setting that variable to
  1357. 1, also in their .vimrc file (prior to sourcing
  1358. $VIMRUNTIME/syntax/syntax.vim).
  1359.  
  1360.     Table of Maple V Package Function Selectors >
  1361.   mv_DEtools     mv_genfunc    mv_networks    mv_process
  1362.   mv_Galois     mv_geometry    mv_numapprox    mv_simplex
  1363.   mv_GaussInt     mv_grobner    mv_numtheory    mv_stats
  1364.   mv_LREtools     mv_group    mv_orthopoly    mv_student
  1365.   mv_combinat     mv_inttrans    mv_padic    mv_sumtools
  1366.   mv_combstruct mv_liesymm    mv_plots    mv_tensor
  1367.   mv_difforms     mv_linalg    mv_plottools    mv_totorder
  1368.   mv_finance     mv_logic    mv_powseries
  1369.  
  1370.  
  1371. MOO                        *moo.vim* *moo-syntax*
  1372.  
  1373. If you use C-style comments inside expressions and find it mangles your
  1374. highlighting, you may want to use extended (slow!) matches for C-style
  1375. comments: >
  1376.  
  1377.     :let moo_extended_cstyle_comments = 1
  1378.  
  1379. To disable highlighting of pronoun substitution patterns inside strings: >
  1380.  
  1381.     :let moo_no_pronoun_sub = 1
  1382.  
  1383. To disable highlighting of the regular expression operator '%|', and matching
  1384. '%(' and '%)' inside strings: >
  1385.  
  1386.     :let moo_no_regexp = 1
  1387.  
  1388. Unmatched double quotes can be recognized and highlighted as errors: >
  1389.  
  1390.     :let moo_unmatched_quotes = 1
  1391.  
  1392. To highlight builtin properties (.name, .location, .programmer etc.): >
  1393.  
  1394.     :let moo_builtin_properties = 1
  1395.  
  1396. Unknown builtin functions can be recognized and highlighted as errors. If you
  1397. use this option, add your own extensions to the mooKnownBuiltinFunction group.
  1398. To enable this option: >
  1399.  
  1400.     :let moo_unknown_builtin_functions = 1
  1401.  
  1402. An example of adding sprintf() to the list of known builtin functions: >
  1403.  
  1404.     :syn keyword mooKnownBuiltinFunction sprintf contained
  1405.  
  1406.  
  1407. MSQL                        *msql.vim* *msql-syntax*
  1408.  
  1409. There are two options for the msql syntax highlighting.
  1410.  
  1411. If you like SQL syntax highlighting inside Strings, use this: >
  1412.  
  1413.     :let msql_sql_query = 1
  1414.  
  1415. For syncing, minlines defaults to 100.  If you prefer another value, you can
  1416. set "msql_minlines" to the value you desire.  Example: >
  1417.  
  1418.     :let msql_minlines = 200
  1419.  
  1420.  
  1421. NCF                        *ncf.vim* *ncf-syntax*
  1422.  
  1423. There is one option for NCF syntax highlighting.
  1424.  
  1425. If you want to have unrecognized (by ncf.vim) statements highlighted as
  1426. errors, use this: >
  1427.  
  1428.     :let ncf_highlight_unknowns = 1
  1429.  
  1430. If you don't want to highlight these errors, leave it unset.
  1431.  
  1432.  
  1433. NROFF                        *nroff.vim* *nroff-syntax*
  1434.  
  1435. The nroff syntax file works with AT&T n/troff out of the box, but you
  1436. will notice that GNU groff's highlighting does not.  You need to
  1437. activate the extra features included in the syntax file.
  1438.  
  1439. If you are using GNU groff, which is the case in all distributions of
  1440. Linux and BSD, use: >
  1441.  
  1442.   :let b:nroff_is_groff = 1
  1443.  
  1444. to activate these extra features.
  1445.  
  1446. groff is different to old AT&T n/troff. Unlike the latter, macro and
  1447. request names can be longer than 2 characters and there are extensions
  1448. to the language primitives. For example, in AT&T troff you may access
  1449. the year as a 2-digit number with the request \(yr. In groff you can
  1450. use the same request, recognized for compatibility, or you can use
  1451. groff's native syntax, \[yr]. Or, you can use a 4-digit year directly:
  1452. \[year]. Macro requests can be longer than 2 characters, for example,
  1453. GNU mm accepts the requests ".VERBON" and ".VERBOFF" for creating
  1454. verbatim environments.
  1455.  
  1456. You should not leave empty spaces at the end of lines nor more than
  1457. one space after a end-of-sentence period, exclamation mark, etc., in
  1458. text that will be processed by any version of n/troff because it
  1459. interferes with the line breaking algorithm. Unlike TeX, troff fills
  1460. text line-by-line, not paragraph-by-paragraph and furthermore, it does
  1461. not have a concept of glue or stretch, all space input will be output
  1462. as is, thus you should be careful of not using more space between
  1463. sentences than you intend to have in your final document.  For
  1464. this reason, the common practice is to insert a carriage return
  1465. immediately after all punctuation marks. If you want more "even" text,
  1466. you need to take care of maintaining regular spacing.  To mark
  1467. both trailing spaces and two or more spaces after a punctuation
  1468. as an error, use: >
  1469.  
  1470.   :let nroff_space_errors = 1
  1471.  
  1472. Another technique to detect extra spacing and other errors that
  1473. will interfere with correct typesetting of your file, is to define
  1474. an eye-catching highliting definition for the syntax groups
  1475. nroffDefinition and nroffDefSpecial in your configuration
  1476. files. For example: >
  1477.  
  1478.   hi def nroffDefinition term=italic cterm=italic gui=reverse
  1479.   hi def nroffDefSpecial term=italic,bold cterm=italic,bold
  1480.              \ gui=reverse,bold
  1481.  
  1482. If you want to navigate to preprocessor entries in your source
  1483. file, as easily as to section markers, you can activate the following
  1484. option in your .vimrc file: >
  1485.  
  1486.     let b:preprocs_as_sections = 1
  1487.  
  1488. As well, the syntax file adds an extra paragraph marker for the
  1489. exdented paragraph macro (.XP) in the ms package.
  1490.  
  1491. Finally, there is a |groff.vim| syntax file that can be used for
  1492. enabling groff syntax highlighting globally by default.
  1493.  
  1494.  
  1495. OCAML                        *ocaml.vim* *ocaml-syntax*
  1496.  
  1497. The OCaml syntax file handles files having the following prefixes: .ml,
  1498. .mli, .mll and .mly.  By setting the following variable >
  1499.  
  1500.     :let ocaml_revised = 1
  1501.  
  1502. you can switch from standard OCaml-syntax to revised syntax as supported
  1503. by the camlp4 preprocessor.  Setting the variable >
  1504.  
  1505.     :let ocaml_noend_error = 1
  1506.  
  1507. prevents highlighting of "end" as error, which is useful when sources
  1508. contain very long structures that Vim does not synchronize anymore.
  1509.  
  1510.  
  1511. PAPP                        *papp.vim* *papp-syntax*
  1512.  
  1513. The PApp syntax file handles .papp files and, to a lesser extend, .pxml
  1514. and .pxsl files which are all a mixture of perl/xml/html/other using xml
  1515. as the top-level file format. By default everything inside phtml or pxml
  1516. sections is treated as a string with embedded preprocessor commands. If
  1517. you set the variable: >
  1518.  
  1519.     :let papp_include_html=1
  1520.  
  1521. in your startup file it will try to syntax-hilight html code inside phtml
  1522. sections, but this is relatively slow and much too colourful to be able to
  1523. edit sensibly ;)
  1524.  
  1525. The newest version of the papp.vim syntax file can usually be found at
  1526. http://papp.plan9.de.
  1527.  
  1528.  
  1529. PASCAL                        *pascal.vim* *pascal-syntax*
  1530.  
  1531. Files matching "*.p" could be Progress or Pascal.  If the automatic detection
  1532. doesn't work for you, or you don't edit Progress at all, use this in your
  1533. startup vimrc: >
  1534.  
  1535.    :let filetype_p = "pascal"
  1536.  
  1537. The Pascal syntax file has been extended to take into account some extensions
  1538. provided by Turbo Pascal, Free Pascal Compiler and GNU Pascal Compiler.
  1539. Delphi keywords are also supported. By default, Turbo Pascal 7.0 features are
  1540. enabled.  If you prefer to stick with the standard Pascal keywords, add the
  1541. following line to your startup file: >
  1542.  
  1543.    :let pascal_traditional=1
  1544.  
  1545. To switch on Delphi specific constructions (such as one-line comments,
  1546. keywords, etc): >
  1547.  
  1548.    :let pascal_delphi=1
  1549.  
  1550.  
  1551. The option pascal_symbol_operator controls whether symbol operators such as +,
  1552. *, .., etc. are displayed using the Operator color or not.  To colorize symbol
  1553. operators, add the following line to your startup file: >
  1554.  
  1555.    :let pascal_symbol_operator=1
  1556.  
  1557. Some functions are highlighted by default.  To switch it off: >
  1558.  
  1559.    :let pascal_no_functions=1
  1560.  
  1561. Furthermore, there are specific variable for some compiler.  Besides
  1562. pascal_delphi, there are pascal_gpc and pascal_fpc.  Default extensions try to
  1563. match Turbo Pascal. >
  1564.  
  1565.    :let pascal_gpc=1
  1566.  
  1567. or >
  1568.  
  1569.    :let pascal_fpc=1
  1570.  
  1571. To ensure that strings are defined on a single line, you can define the
  1572. pascal_one_line_string variable. >
  1573.  
  1574.    :let pascal_one_line_string=1
  1575.  
  1576. If you dislike <Tab> chars, you can set the pascal_no_tabs variable.  Tabs
  1577. will be highlighted as Error. >
  1578.  
  1579.    :let pascal_no_tabs=1
  1580.  
  1581.  
  1582.  
  1583. PERL                        *perl.vim* *perl-syntax*
  1584.  
  1585. There are a number of possible options to the perl syntax highlighting.
  1586.  
  1587. If you use POD files or POD segments, you might: >
  1588.  
  1589.     :let perl_include_pod = 1
  1590.  
  1591. To handle package references in variable and function names differently from
  1592. the rest of the name (like 'PkgName::' in '$PkgName::VarName'): >
  1593.  
  1594.     :let perl_want_scope_in_variables = 1
  1595.  
  1596. If you want complex things like '@{${"foo"}}' to be parsed: >
  1597.  
  1598.     :let perl_extended_vars = 1
  1599.  
  1600. The coloring strings can be changed. By default strings and qq friends will be
  1601. highlighted like the first line. If you set the variable
  1602. perl_string_as_statement, it will be highlighted as in the second line.
  1603.  
  1604.    "hello world!"; qq|hello world|;
  1605.    ^^^^^^^^^^^^^^NN^^^^^^^^^^^^^^^N       (unlet perl_string_as_statement)
  1606.    S^^^^^^^^^^^^SNNSSS^^^^^^^^^^^^N       (let perl_string_as_statement)
  1607.  
  1608. (^ = perlString, S = perlStatement, N = None at all)
  1609.  
  1610. The syncing has 3 options. The first two switch off some triggering of
  1611. synchronization and should only be needed in case it fails to work properly.
  1612. If while scrolling all of a sudden the whole screen changes color completely
  1613. then you should try and switch off one of those. Let me know if you can figure
  1614. out the line that causes the mistake.
  1615.  
  1616. One triggers on "^\s*sub\s*" and the other on "^[$@%]" more or less. >
  1617.  
  1618.     :let perl_no_sync_on_sub
  1619.     :let perl_no_sync_on_global_var
  1620.  
  1621. Below you can set the maximum distance VIM should look for starting points for
  1622. its attempts in syntax highlighting. >
  1623.  
  1624.     :let perl_sync_dist = 100
  1625.  
  1626. For the "<<xxx" construct (here Documents), Vim can't check for any value of
  1627. "xxx".  If you have a choice use "<<EOF ... EOF", then the highlighting will
  1628. work.
  1629.  
  1630. If you want to use folding with perl, set perl_fold: >
  1631.  
  1632.        :let perl_fold = 1
  1633.  
  1634.  
  1635. PHP3 and PHP4        *php.vim* *php3.vim* *php-syntax* *php3-syntax*
  1636.  
  1637. [note: previously this was called "php3", but since it now also supports php4
  1638. it has been renamed to "php"]
  1639.  
  1640. There are the following options for the php syntax highlighting.
  1641.  
  1642. If you like SQL syntax highlighting inside Strings: >
  1643.  
  1644.   let php_sql_query = 1
  1645.  
  1646. For highlighting the Baselib methods: >
  1647.  
  1648.   let php_baselib = 1
  1649.  
  1650. Enable HTML syntax highlighting inside strings: >
  1651.  
  1652.   let php_htmlInStrings = 1
  1653.  
  1654. Using the old colorstyle: >
  1655.  
  1656.   let php_oldStyle = 1
  1657.  
  1658. Enable highlighting ASP-style short tags: >
  1659.  
  1660.   let php_asp_tags = 1
  1661.  
  1662. Disable short tags: >
  1663.  
  1664.   let php_noShortTags = 1
  1665.  
  1666. For highlighting parent error ] or ): >
  1667.  
  1668.   let php_parent_error_close = 1
  1669.  
  1670. For skipping an php end tag, if there exists an open ( or [ without a closing
  1671. one: >
  1672.  
  1673.   let php_parent_error_open = 1
  1674.  
  1675. Enable folding for classes and functions: >
  1676.  
  1677.   let php_folding = 1
  1678.  
  1679. Selecting syncing method: >
  1680.  
  1681.   let php_sync_method = x
  1682.  
  1683. x = -1 to sync by search (default),
  1684. x > 0 to sync at least x lines backwards,
  1685. x = 0 to sync from start.
  1686.  
  1687.  
  1688. PPWIZARD                    *ppwiz.vim* *ppwiz-syntax*
  1689.  
  1690. PPWizard is a preprocessor for HTML and OS/2 INF files
  1691.  
  1692. This syntax file has the options:
  1693.  
  1694. - ppwiz_highlight_defs : determines highlighting mode for PPWizard's
  1695.   definitions. Possible values are
  1696.  
  1697.   ppwiz_highlight_defs = 1 : PPWizard #define statements retain the
  1698.     colors of their contents (e. g. PPWizard macros and variables)
  1699.  
  1700.   ppwiz_highlight_defs = 2 : preprocessor #define and #evaluate
  1701.     statements are shown in a single color with the exception of line
  1702.     continuation symbols
  1703.  
  1704.   The default setting for ppwiz_highlight_defs is 1.
  1705.  
  1706. - ppwiz_with_html : If the value is 1 (the default), highlight literal
  1707.   HTML code; if 0, treat HTML code like ordinary text.
  1708.  
  1709.  
  1710. PHTML                        *phtml.vim* *phtml-syntax*
  1711.  
  1712. There are two options for the phtml syntax highlighting.
  1713.  
  1714. If you like SQL syntax highlighting inside Strings, use this: >
  1715.  
  1716.     :let phtml_sql_query = 1
  1717.  
  1718. For syncing, minlines defaults to 100.  If you prefer another value, you can
  1719. set "phtml_minlines" to the value you desire.  Example: >
  1720.  
  1721.     :let phtml_minlines = 200
  1722.  
  1723.  
  1724. POSTSCRIPT                    *postscr.vim* *postscr-syntax*
  1725.  
  1726. There are several options when it comes to highlighting PostScript.
  1727.  
  1728. First which version of the PostScript language to highlight.  There are
  1729. currently three defined language versions, or levels.  Level 1 is the original
  1730. and base version, and includes all extensions prior to the release of level 2.
  1731. Level 2 is the most common version around, and includes its own set of
  1732. extensions prior to the release of level 3.  Level 3 is currently the highest
  1733. level supported.  You select which level of the PostScript language you want
  1734. highlighted by defining the postscr_level variable as follows: >
  1735.  
  1736.     :let postscr_level=2
  1737.  
  1738. If this variable is not defined it defaults to 2 (level 2) since this is
  1739. the most prevalent version currently.
  1740.  
  1741. Note, not all PS interpreters will support all language features for a
  1742. particular language level.  In particular the %!PS-Adobe-3.0 at the start of
  1743. PS files does NOT mean the PostScript present is level 3 PostScript!
  1744.  
  1745. If you are working with Display PostScript, you can include highlighting of
  1746. Display PS language features by defining the postscr_display variable as
  1747. follows: >
  1748.  
  1749.     :let postscr_display=1
  1750.  
  1751. If you are working with Ghostscript, you can include highlighting of
  1752. Ghostscript specific language features by defining the variable
  1753. postscr_ghostscript as follows: >
  1754.  
  1755.     :let postscr_ghostscript=1
  1756.  
  1757. PostScript is a large language, with many predefined elements.  While it
  1758. useful to have all these elements highlighted, on slower machines this can
  1759. cause Vim to slow down.  In an attempt to be machine friendly font names and
  1760. character encodings are not highlighted by default.  Unless you are working
  1761. explicitly with either of these this should be ok.  If you want them to be
  1762. highlighted you should set one or both of the following variables: >
  1763.  
  1764.     :let postscr_fonts=1
  1765.     :let postscr_encodings=1
  1766.  
  1767. There is a stylistic option to the highlighting of and, or, and not.  In
  1768. PostScript the function of these operators depends on the types of their
  1769. operands - if the operands are booleans then they are the logical operators,
  1770. if they are integers then they are binary operators.  As binary and logical
  1771. operators can be highlighted differently they have to be highlighted one way
  1772. or the other.  By default they are treated as logical operators.  They can be
  1773. highlighted as binary operators by defining the variable
  1774. postscr_andornot_binary as follows: >
  1775.  
  1776.     :let postscr_andornot_binary=1
  1777. <
  1778.  
  1779.             *ptcap.vim*
  1780. PRINTCAP + TERMCAP    *ptcap-syntax* *termcap-syntax* *printcap-syntax*
  1781.  
  1782. This syntax file applies to the printcap and termcap databases.
  1783.  
  1784. In order for Vim to recognize printcap/termcap files that do not match
  1785. the patterns *printcap*, or *termcap*, you must put additional patterns
  1786. appropriate to your system in your |myfiletypefile| file.  For these
  1787. patterns, you must set the variable "b:ptcap_type" to either "print" or
  1788. "term", and then the 'filetype' option to ptcap.
  1789.  
  1790. For example, to make Vim identify all files in /etc/termcaps/ as termcap
  1791. files, add the following: >
  1792.  
  1793.    :au BufNewFile,BufRead /etc/termcaps/* let b:ptcap_type = "term" |
  1794.                        \ set filetype=ptcap
  1795.  
  1796. If you notice highlighting errors while scrolling backwards, which
  1797. are fixed when redrawing with CTRL-L, try setting the "ptcap_minlines"
  1798. internal variable to a larger number:
  1799.  
  1800.   let ptcap_minlines = 50
  1801.  
  1802. (The default is 20 lines.)
  1803.  
  1804.  
  1805. PROGRESS                *progress.vim* *progress-syntax*
  1806.  
  1807. Files matching "*.w" could be Progress or cweb.  If the automatic detection
  1808. doesn't work for you, or you don't edit cweb at all, use this in your
  1809. startup vimrc: >
  1810.    :let filetype_w = "progress"
  1811. The same happens for "*.i", which could be assembly, and "*.p", which could be
  1812. Pascal.  Use this if you don't use assembly and Pascal: >
  1813.    :let filetype_i = "progress"
  1814.    :let filetype_p = "progress"
  1815.  
  1816.  
  1817. PYTHON                        *python.vim* *python-syntax*
  1818.  
  1819. There are four options to control Python syntax highlighting.
  1820.  
  1821. For highlighted numbers: >
  1822.     :let python_highlight_numbers = 1
  1823.  
  1824. For highlighted builtin functions: >
  1825.     :let python_highlight_builtins = 1
  1826.  
  1827. For highlighted standard exceptions: >
  1828.     :let python_highlight_exceptions = 1
  1829.  
  1830. If you want all possible Python highlighting (the same as setting the
  1831. preceding three options): >
  1832.     :let python_highlight_all = 1
  1833.  
  1834.  
  1835. QUAKE                        *quake.vim* *quake-syntax*
  1836.  
  1837. The Quake syntax defininition should work for most any FPS (First Person
  1838. Shooter) based on one of the Quake engines. However, the command names vary
  1839. a bit between the three games (Quake, Quake 2, and Quake 3 Arena) so the
  1840. syntax definition checks for the existence of three global variables to allow
  1841. users to specify what commands are legal in their files. The three variables
  1842. can be set for the following effects:
  1843.  
  1844. set to highlight commands only available in Quake: >
  1845.     :let quake_is_quake1 = 1
  1846.  
  1847. set to highlight commands only available in Quake 2: >
  1848.     :let quake_is_quake2 = 1
  1849.  
  1850. set to highlight commands only available in Quake 3 Arena: >
  1851.     :let quake_is_quake3 = 1
  1852.  
  1853. Any combination of these three variables is legal, but might highlight more
  1854. commands than are actually available to you by the game.
  1855.  
  1856.  
  1857. READLINE                *readline.vim* *readline-syntax*
  1858.  
  1859. The readline library is primarily used by the BASH shell, which adds quite a
  1860. few commands and options to the ones already available. To highlight these
  1861. items as well you can add the following to your |vimrc| or just type it in the
  1862. command line before loading a file with the readline syntax: >
  1863.     let readline_has_bash = 1
  1864.  
  1865. This will add highlighting for the commands that BASH (version 2.05a and
  1866. later, and part earlier) adds.
  1867.  
  1868.  
  1869. REXX                        *rexx.vim* *rexx-syntax*
  1870.  
  1871. If you notice highlighting errors while scrolling backwards, which are fixed
  1872. when redrawing with CTRL-L, try setting the "rexx_minlines" internal variable
  1873. to a larger number: >
  1874.     :let rexx_minlines = 50
  1875. This will make the syntax synchronization start 50 lines before the first
  1876. displayed line.  The default value is 10.  The disadvantage of using a larger
  1877. number is that redrawing can become slow.
  1878.  
  1879.  
  1880. RUBY                        *ruby.vim* *ruby-syntax*
  1881.  
  1882. There are a few options to the Ruby syntax highlighting.
  1883.  
  1884. By default, the "end" keyword is colorized according to the opening statement
  1885. of the block it closes. While useful, this feature can be expensive: if you
  1886. experience slow redrawing (or you are on a terminal with poor color support)
  1887. you may want to turn it off by defining the "ruby_no_expensive" variable: >
  1888.     :let ruby_no_expensive = 1
  1889. In this case the same color will be used for all control keywords.
  1890.  
  1891. If you do want this feature enabled, but notice highlighting errors while
  1892. scrolling backwards, which are fixed when redrawing with CTRL-L, try setting
  1893. the "ruby_minlines" variable to a value larger than 50: >
  1894.     :let ruby_minlines = 100
  1895. Ideally, this value should be a number of lines large enough to embrace your
  1896. largest class or module.
  1897.  
  1898. Finally, if you do not like to see too many color items around, you can define
  1899. "ruby_no_identifiers": >
  1900.     :let ruby_no_identifiers = 1
  1901. This will prevent highlighting of special identifiers like "ConstantName",
  1902. "$global_var", "@instace_var", "| iterator |", and ":symbol".
  1903.  
  1904.  
  1905. SDL                        *sdl.vim* *sdl-syntax*
  1906.  
  1907. The SDL highlighting probably misses a few keywords, but SDL has so many
  1908. of them it's almost impossibly to cope.
  1909.  
  1910. The new standard, SDL-2000, specifies that all identifiers are
  1911. case-sensitive (which was not so before), and that all keywords can be
  1912. used either completely lowercase or completely uppercase. To have the
  1913. highlighting reflect this, you can set the following variable: >
  1914.     :let sdl_2000=1
  1915.  
  1916. This also sets many new keywords. If you want to disable the old
  1917. keywords, which is probably a good idea, use: >
  1918.     :let SDL_no_96=1
  1919.  
  1920.  
  1921. The indentation is probably also incomplete, but right now I am very
  1922. satisfied with it for my own projects.
  1923.  
  1924. The last thing is a little PO-editing helper. It adds a couple of menu
  1925. entries. Though it doesn't do much, I find it extremely helpful for
  1926. translating PO files. I just won't use Emacs, you know.
  1927.  
  1928.  
  1929. SED                        *sed.vim* *sed-syntax*
  1930.  
  1931. To make tabs stand out from regular blanks (accomplished by using Todo
  1932. highlighting on the tabs), define "highlight_sedtabs" by putting >
  1933.  
  1934.     :let highlight_sedtabs = 1
  1935.  
  1936. in the vimrc file.  (This special highlighting only applies for tabs
  1937. inside search patterns, replacement texts, addresses or text included
  1938. by an Append/Change/Insert command.)  If you enable this option, it is
  1939. also a good idea to set the tab width to one character; by doing that,
  1940. you can easily count the number of tabs in a string.
  1941.  
  1942. Bugs:
  1943.  
  1944.   The transform command (y) is treated exactly like the substitute
  1945.   command.  This means that, as far as this syntax file is concerned,
  1946.   transform accepts the same flags as substitute, which is wrong.
  1947.   (Transform accepts no flags.)  I tolerate this bug because the
  1948.   involved commands need very complex treatment (95 patterns, one for
  1949.   each plausible pattern delimiter).
  1950.  
  1951.  
  1952. SGML                        *sgml.vim* *sgml-syntax*
  1953.  
  1954. The coloring scheme for tags in the SGML file works as follows.
  1955.  
  1956. The <> of opening tags are colored differently than the </> of a closing tag.
  1957. This is on purpose! For opening tags the 'Function' color is used, while for
  1958. closing tags the 'Type' color is used (See syntax.vim to check how those are
  1959. defined for you)
  1960.  
  1961. Known tag names are colored the same way as statements in C.  Unknown tag
  1962. names are not colored which makes it easy to spot errors.
  1963.  
  1964. Note that the same is true for argument (or attribute) names. Known attribute
  1965. names are colored differently than unknown ones.
  1966.  
  1967. Some SGML tags are used to change the rendering of text. The following tags
  1968. are recognized by the sgml.vim syntax coloring file and change the way normal
  1969. text is shown: <varname> <emphasis> <command> <function> <literal>
  1970. <replaceable> <ulink> and <link>.
  1971.  
  1972. If you want to change how such text is rendered, you must redefine the
  1973. following syntax groups:
  1974.  
  1975.     - sgmlBold
  1976.     - sgmlBoldItalic
  1977.     - sgmlUnderline
  1978.     - sgmlItalic
  1979.     - sgmlLink for links
  1980.  
  1981. To make this redefinition work you must redefine them all and define the
  1982. following variable in your vimrc (this is due to the order in which the files
  1983. are read during initialization) >
  1984.    let sgml_my_rendering=1
  1985.  
  1986. You can also disable this rendering by adding the following line to your
  1987. vimrc file: >
  1988.    let sgml_no_rendering=1
  1989.  
  1990. (Adapted from the html.vim help text by Claudio Fleiner <claudio@fleiner.com>)
  1991.  
  1992.  
  1993. SH                        *sh.vim* *sh-syntax*
  1994.  
  1995. This covers the "normal" Unix (Bourne) sh, bash and the Korn shell.
  1996.  
  1997. Vim attempts to determine which shell type is in use by specifying that
  1998. various filenames are of specific types:
  1999.  
  2000.     ksh : .kshrc* *.ksh
  2001.     bash: .bashrc* bashrc bash.bashrc .bash_profile* *.bash
  2002.  
  2003. If neither of these cases pertain, then the first line of the file is examined
  2004. (ex. /bin/sh  /bin/ksh  /bin/bash).  If the first line specifies a shelltype,
  2005. then that shelltype is used.  However some files (ex. .profile) are known to
  2006. be shell files but the type is not apparent.  One may specify buffer specific
  2007. variables prior to sourcing the <sh.vim> syntax file (b:is_kornshell,
  2008. b:is_bash, or b:is_sh) so that the associated shell type will be used.  One
  2009. may also specify a global default by instantiating one of the following
  2010. three variables:
  2011.  
  2012.     ksh : is_kornshell
  2013.     bash: is_bash
  2014.     sh  : is_sh
  2015.  
  2016. One may also specify that what looks like the "sh" shell is actually
  2017. to be interpreted as a bash shell by setting 'bash_is_sh'.  It is
  2018. best to set any of these global variables in your '.vimrc' file.
  2019.  
  2020. To choose between the two ways to treat single-quotes inside a pair of
  2021. double-quotes, I have introduced a Vim variable "highlight_balanced_quotes".
  2022. By default (ie by not declaring this variable) single quotes can be used
  2023. inside double quotes, and are not highlighted.  If you prefer balanced single
  2024. quotes as I do you just make the statement in your .vimrc file: >
  2025.     :let highlight_balanced_quotes = 1
  2026.  
  2027. Similarly I have introduced another vim variable "highlight_function_name" to be
  2028. used to enable/disable highlighting of the function-name in function
  2029. declarations.  The default is not to highlight the function name.  If you want to
  2030. highlight function names, include this in your .vimrc file: >
  2031.     :let highlight_function_name = 1
  2032.  
  2033. If you notice highlighting errors while scrolling backwards, which are fixed
  2034. when redrawing with CTRL-L, try setting the "sh_minlines" internal variable
  2035. to a larger number: >
  2036.     :let sh_minlines = 200
  2037. This will make the syntax synchronization start 200 lines before the first
  2038. displayed line.  The default value is 100.  The disadvantage of using a larger
  2039. number is that redrawing can become slow.
  2040.  
  2041. If you don't have much to synchronize on, displaying can be very slow.  To
  2042. reduce this, the "sh_maxlines" internal variable can be set: >
  2043.     :let sh_maxlines = 100
  2044. The default is to use the double of "sh_minlines".  Set it to a smaller number
  2045. to speed up displaying.  The disadvantage is that highlight errors may appear.
  2046.  
  2047.  
  2048. SPEEDUP (AspenTech plant simulator)        *spup.vim* *spup-syntax*
  2049.  
  2050. The Speedup syntax file has some options:
  2051.  
  2052. - strict_subsections : If this variable is defined, only keywords for
  2053.   sections and subsections will be highlighted as statements but not
  2054.   other keywords (like WITHIN in the OPERATION section).
  2055.  
  2056. - highlight_types : Definition of this variable causes stream types
  2057.   like temperature or pressure to be highlighted as Type, not as a
  2058.   plain Identifier. Included are the types that are usually found in
  2059.   the DECLARE section; if you defined own types, you have to include
  2060.   them in the syntax file.
  2061.  
  2062. - oneline_comments : this value ranges from 1 to 3 and determines the
  2063.   highlighting of # style comments.
  2064.  
  2065.   oneline_comments = 1 : allow normal Speedup code after an even
  2066.   number of #s.
  2067.  
  2068.   oneline_comments = 2 : show code starting with the second # as
  2069.   error. This is the default setting.
  2070.  
  2071.   oneline_comments = 3 : show the whole line as error if it contains
  2072.   more than one #.
  2073.  
  2074. Since especially OPERATION sections tend to become very large due to
  2075. PRESETting variables, syncing may be critical. If your computer is
  2076. fast enough, you can increase minlines and/or maxlines near the end of
  2077. the syntax file.
  2078.  
  2079.  
  2080. TEX                        *tex.vim* *tex-syntax*
  2081.  
  2082. The tex highlighting supports TeX, LaTeX, and some AmsTeX.  The
  2083. highlighting supports three primary zones: normal, texZone, and texMathZone.
  2084. Although a considerable effort has been made to have these zones terminate
  2085. properly, zones delineated by $..$ and $$..$$ cannot be synchronized as
  2086. there's no difference between start and end patterns.  Consequently, a
  2087. special "TeX comment" has been provided >
  2088.     %stopzone
  2089. which will forcibly terminate the highlighting of either a texZone or a
  2090. texMathZone.
  2091.  
  2092. If you have a slow computer, you may wish to reduce the values for >
  2093.     :syn sync maxlines=200
  2094.     :syn sync minlines=50
  2095. (especially the latter).  If your computer is fast, you may wish to
  2096. increase them.  This primarily affects synchronizing (ie. just what group,
  2097. if any, is the text at the top of the screen supposed to be in?).
  2098.  
  2099. The <tex.vim> supports lexical error checking of various sorts.  Thus,
  2100. although the error checking is ofttimes very useful, it can indicate
  2101. errors where none actually are.  If this proves to be a problem for you,
  2102. you may put in your <.vimrc> the following statement: >
  2103.     let tex_no_error=1
  2104. and all error checking by <tex.vim> will be suppressed.
  2105.  
  2106.  
  2107. TF                        *tf.vim* *tf-syntax*
  2108.  
  2109. There is one option for the tf syntax highlighting.
  2110.  
  2111. For syncing, minlines defaults to 100.  If you prefer another value, you can
  2112. set "tf_minlines" to the value you desire.  Example: >
  2113.  
  2114.     :let tf_minlines = your choice
  2115.  
  2116.  
  2117. VIM                        *vim.vim* *vim-syntax*
  2118.  
  2119. There is one option available for <vim.vim>, accessed via the g:vimembedscript
  2120. global variable.  The option allows for somewhat faster loading of syntax
  2121. highlighting for vim scripts at the expense of supporting syntax highlighting
  2122. for external scripting languages (currently perl, python, ruby, and tcl).
  2123.  
  2124.     g:vimembedscript == 1 (default)  <vim.vim> will allow highlighting
  2125.     g:vimembedscript doesn't exist   of suported embedded scripting
  2126.                      languages: perl, python, ruby and
  2127.                      tcl.
  2128.  
  2129.     g:vimembedscript == 0         Syntax highlighting for embedded
  2130.                      scripting languages will not be
  2131.                      loaded.
  2132.  
  2133.  
  2134. XF86CONFIG                *xf86conf.vim* *xf86conf-syntax*
  2135.  
  2136. The syntax of XF86Config file differs in XFree86 v3.x and v4.x.  Both
  2137. variants are supported.  Automatic detection is used, but is far from perfect.
  2138. You may need to specify the version manually.  Set the variable
  2139. xf86conf_xfree86_version to 3 or 4 according to your XFree86 version in
  2140. your .vimrc.  Example: >
  2141.     :let xf86conf_xfree86_version=3
  2142. When using a mix of versions, set the b:xf86conf_xfree86_version variable.
  2143.  
  2144. Note that spaces and underscores in option names are not supported.  Use
  2145. "SyncOnGreen" instead of "__s yn con gr_e_e_n" if you want the option name
  2146. highlighted.
  2147.  
  2148.  
  2149. XML                        *xml.vim* *xml-syntax*
  2150.  
  2151. Xml namespaces are highlighted by default. This can be inhibited by
  2152. setting a global variable: >
  2153.  
  2154.     :let g:xml_namespace_transparent=1
  2155. <
  2156.                             *xml-folding*
  2157. The xml syntax file provides syntax |folding| (see |:syn-fold|) between
  2158. start and end tags. This can be turned on by >
  2159.  
  2160.     :set foldmethod=syntax
  2161.  
  2162.  
  2163. X Pixmaps (XPM)                    *xpm.vim* *xpm-syntax*
  2164.  
  2165. xpm.vim creates its syntax items dynamically based upon the contents of the
  2166. XPM file.  Thus if you make changes e.g. in the color specification strings,
  2167. you have to source it again e.g. with ":set syn=xpm".
  2168.  
  2169. To copy a pixel with one of the colors, yank a "pixel" with "yl" and insert it
  2170. somewhere else with "P".
  2171.  
  2172. Do you want to draw with the mouse?  Try the following: >
  2173.    :function! GetPixel()
  2174.    :   let c = getline(line("."))[col(".") - 1]
  2175.    :   echo c
  2176.    :   exe "noremap <LeftMouse> <LeftMouse>r".c
  2177.    :   exe "noremap <LeftDrag>  <LeftMouse>r".c
  2178.    :endfunction
  2179.    :noremap <RightMouse> <LeftMouse>:call GetPixel()<CR>
  2180.    :set guicursor=n:hor20       " to see the color beneath the cursor
  2181. This turns the right button into a pipette and the left button into a pen.
  2182. It will work with XPM files that have one character per pixel only and you
  2183. must not click outside of the pixel strings, but feel free to improve it.
  2184.  
  2185. It will look much better with a font in a quadratic cell size, e.g. for X: >
  2186.     :set guifont=-*-clean-medium-r-*-*-8-*-*-*-*-80-*
  2187.  
  2188. ==============================================================================
  2189. 5. Defining a syntax                    *:syn-define* *E410*
  2190.  
  2191. Vim understands three types of syntax items:
  2192.  
  2193. 1. Keyword.
  2194.    It can only contain keyword characters, according to the 'iskeyword'
  2195.    option.  It cannot contain other syntax items.  It will only match with a
  2196.    complete word (there are no keyword characters before or after the match).
  2197.    The keyword "if" would match in "if(a=b)", but not in "ifdef x", because
  2198.    "(" is not a keyword character and "d" is.
  2199.  
  2200. 2. Match.
  2201.    This is a match with a single regexp pattern.
  2202.  
  2203. 3. Region.
  2204.    This starts at a match of the "start" regexp pattern and ends with a match
  2205.    with the "end" regexp pattern.  Any other text can appear in between.  A
  2206.    "skip" regexp pattern can be used to avoid matching the "end" pattern.
  2207.  
  2208. Several syntax ITEMs can be put into one syntax GROUP.  For a syntax group
  2209. you can give highlighting attributes.  For example, you could have an item
  2210. to define a "/* .. */" comment and another one that defines a "// .." comment,
  2211. and put them both in the "Comment" group.  You can then specify that a
  2212. "Comment" will be in bold font and have a blue color.  You are free to make
  2213. one highlight group for one syntax item, or put all items into one group.
  2214. This depends on how you want to specify your highlighting attributes.  Putting
  2215. each item in its own group results in having to specify the highlighting
  2216. for a lot of groups.
  2217.  
  2218. Note that a syntax group and a highlight group are similar.  For a highlight
  2219. group you will have given highlight attributes.  These attributes will be used
  2220. for the syntax group with the same name.
  2221.  
  2222. In case more than one item matches at the same position, the one that was
  2223. defined LAST wins.  Thus you can override previously defined syntax items by
  2224. using an item that matches the same text.  But a keyword always goes before a
  2225. match or region.  And a keyword with matching case always goes before a
  2226. keyword with ignoring case.
  2227.  
  2228.  
  2229. DEFINING CASE                        *:syn-case* *E390*
  2230.  
  2231. :sy[ntax] case [match|ignore]
  2232.     This defines if the following ":syntax" commands will work with
  2233.     matching case, when using "match", or with ignoring case, when using
  2234.     "ignore".  Note that any items before this are not affected, and all
  2235.     items until the next ":syntax case" command are affected.
  2236.  
  2237.  
  2238. DEFINING KEYWORDS                    *:syn-keyword*
  2239.  
  2240. :sy[ntax] keyword {group-name} [{options}] {keyword} .. [{options}]
  2241.  
  2242.     This defines a number of keywords.
  2243.  
  2244.     {group-name}    Is a syntax group name such as "Comment".
  2245.     [{options}]    See |:syn-arguments| below.
  2246.     {keyword} ..    Is a list of keywords which are part of this group.
  2247.  
  2248.     Example: >
  2249.   :syntax keyword   Type   int long char
  2250. <
  2251.     The {options} can be given anywhere in the line.  They will apply to
  2252.     all keywords given, also for options that come after a keyword.
  2253.     These examples do exactly the same: >
  2254.   :syntax keyword   Type   contained int long char
  2255.   :syntax keyword   Type   int long contained char
  2256.   :syntax keyword   Type   int long char contained
  2257. <
  2258.     When you have a keyword with an optional tail, like Ex commands in
  2259.     Vim, you can put the optional characters inside [], to define all the
  2260.     variations at once: >
  2261.   :syntax keyword   VimCommand   ab[breviate] n[ext]
  2262. <
  2263.     Don't forget that a keyword can only be recognized if all the
  2264.     characters are included in the 'iskeyword' option.  If one character
  2265.     isn't, the keyword will never be recognized.
  2266.     Multi-byte characters can also be used.  These do not have to be in
  2267.     'iskeyword'.
  2268.  
  2269.     A keyword always has higher priority than a match or region, the
  2270.     keyword is used if more than one item matches.  Keywords do not nest
  2271.     and a keyword can't contain anything else.
  2272.  
  2273.     Note that when you have a keyword that is the same as an option (even
  2274.     one that isn't allowed here), you can not use it.  Use a match
  2275.     instead.
  2276.  
  2277.     The maximum length of a keyword is 80 characters.
  2278.  
  2279.     The same keyword can be defined multiple times, when its containment
  2280.     differs.  For example, you can define the keyword once not contained
  2281.     and use one highlight group, and once contained, and use a different
  2282.     highlight group. Example: >
  2283.   :syn keyword vimCommand tag
  2284.   :syn keyword vimSetting contained tag
  2285. <    When finding "tag" outside of any syntax item, the "vimCommand"
  2286.     highlight group is used.  When finding "tag" in a syntax item that
  2287.     contains "vimSetting", the "vimSetting" group is used.
  2288.  
  2289.  
  2290. DEFINING MATCHES                    *:syn-match*
  2291.  
  2292. :sy[ntax] match {group-name} [{options}] [excludenl] {pattern} [{options}]
  2293.  
  2294.     This defines one match.
  2295.  
  2296.     {group-name}        A syntax group name such as "Comment".
  2297.     [{options}]        See |:syn-arguments| below.
  2298.     [excludenl]        Don't make a pattern with the end-of-line "$"
  2299.                 extend a containing match or region.  Must be
  2300.                 given before the pattern. |:syn-excludenl|
  2301.     {pattern}        The search pattern that defines the match.
  2302.                 See |:syn-pattern| below.
  2303.                 Note that the pattern may match more than one
  2304.                 line, which makes the match depend on where
  2305.                 Vim starts searching for the pattern.  You
  2306.                 need to make sure syncing takes care of this.
  2307.  
  2308.     Example (match a character constant): >
  2309.   :syntax match Character /'.'/hs=s+1,he=e-1
  2310. <
  2311.  
  2312. DEFINING REGIONS    *:syn-region* *:syn-start* *:syn-skip* *:syn-end*
  2313.                             *E398* *E399*
  2314. :sy[ntax] region {group-name} [{options}]
  2315.         [matchgroup={group-name}]
  2316.         [keepend]
  2317.         [extend]
  2318.         [excludenl]
  2319.         start={start_pattern} ..
  2320.         [skip={skip_pattern}]
  2321.         end={end_pattern} ..
  2322.         [{options}]
  2323.  
  2324.     This defines one region.  It may span several lines.
  2325.  
  2326.     {group-name}        A syntax group name such as "Comment".
  2327.     [{options}]        See |:syn-arguments| below.
  2328.     [matchgroup={group-name}]  The syntax group to use for the following
  2329.                 start or end pattern matches only.  Not used
  2330.                 for the text in between the matched start and
  2331.                 end patterns.  Use NONE to reset to not using
  2332.                 a different group for the start or end match.
  2333.                 See |:syn-matchgroup|.
  2334.     keepend            Don't allow contained matches to go past a
  2335.                 match with the end pattern.  See
  2336.                 |:syn-keepend|.
  2337.     extend            Override a "keepend" for an item this region
  2338.                 is contained in. See |:syn-extend|.
  2339.     excludenl        Don't make a pattern with the end-of-line "$"
  2340.                 extend a containing match or item.  Only
  2341.                 useful for end patterns.  Must be given before
  2342.                 the patterns it applies to. |:syn-excludenl|
  2343.     start={start_pattern}    The search pattern that defines the start of
  2344.                 the region.  See |:syn-pattern| below.
  2345.     skip={skip_pattern}    The search pattern that defines text inside
  2346.                 the region where not to look for the end
  2347.                 pattern.  See |:syn-pattern| below.
  2348.     end={end_pattern}    The search pattern that defines the end of
  2349.                 the region.  See |:syn-pattern| below.
  2350.  
  2351.     Example: >
  2352.   :syntax region String   start=+"+  skip=+\\"+  end=+"+
  2353. <
  2354.     The start/skip/end patterns and the options can be given in any order.
  2355.     There can be zero or one skip pattern.  There must be one or more
  2356.     start and end patterns.  This means that you can omit the skip
  2357.     pattern, but you must give at least one start and one end pattern.  It
  2358.     is allowed to have white space before and after the equal sign
  2359.     (although it mostly looks better without white space).
  2360.  
  2361.     When more than one start pattern is given, a match with one of these
  2362.     is sufficient.  This means there is an OR relation between the start
  2363.     patterns.  The last one that matches is used.  The same is true for
  2364.     the end patterns.
  2365.  
  2366.     The search for the end pattern starts right after the start pattern.
  2367.     Offsets are not used for this.  This implies that the match for the
  2368.     end pattern will never overlap with the start pattern.
  2369.  
  2370.     The skip and end pattern can match across line breaks, but since the
  2371.     search for the pattern can start in any line it often does not do what
  2372.     you want.  The skip pattern doesn't avoid a match of an end pattern in
  2373.     the next line.  Use single-line patterns to avoid trouble.
  2374.  
  2375.     Note: The decision to start a region is only based on a matching start
  2376.     pattern.  There is no check for a matching end pattern.  This does NOT
  2377.     work: >
  2378.         :syn region First  start="("  end=":"
  2379.         :syn region Second start="("  end=";"
  2380. <    The Second always matches before the First (last defined pattern has
  2381.     higher priority).  The Second region then continues until the next
  2382.     ';', no matter if there is a ':' before it.  Using a match does work: >
  2383.         :syn match First  "(\_.\{-}:"
  2384.         :syn match Second "(\_.\{-};"
  2385. <    This pattern matches any character or line break with "\_." and
  2386.     repeats that with "\{-}" (repeat as few as possible).
  2387.  
  2388.                             *:syn-keepend*
  2389.     By default, a contained match can obscure a match for the end pattern.
  2390.     This is useful for nesting.  For example, a region that starts with
  2391.     "{" and ends with "}", can contain another region.  An encountered "}"
  2392.     will then end the contained region, but not the outer region:
  2393.         {        starts outer "{}" region
  2394.         {    starts contained "{}" region
  2395.         }    ends contained "{}" region
  2396.         }        ends outer "{} region
  2397.     If you don't want this, the "keepend" argument will make the matching
  2398.     of an end pattern of the outer region also end any contained item.
  2399.     This makes it impossible to nest the same region, but allows for
  2400.     contained items to highlight parts of the end pattern, without causing
  2401.     that to skip the match with the end pattern.  Example: >
  2402.   :syn match  VimComment +"[^"]\+$+
  2403.   :syn region VimCommand start="set" end="$" contains=VimComment keepend
  2404. <    The "keepend" makes the VimCommand always end at the end of the line,
  2405.     even though the contained VimComment includes a match with the <EOL>.
  2406.  
  2407.     When "keepend" is not used, a match with an end pattern is retried
  2408.     after each contained match.  When "keepend" is included, the first
  2409.     encountered match with an end pattern is used, truncating any
  2410.     contained matches.
  2411.                             *:syn-extend*
  2412.     The "keepend" behavior can be changed by using the "extend" argument.
  2413.     When an item with "extend" is contained in an item that uses
  2414.     "keepend", the "keepend" is ignored and the containing region will be
  2415.     extended.
  2416.     This can be used to have some contained items extend a region while
  2417.     others don't.  Example: >
  2418.  
  2419.    :syn region htmlRef start=+<a>+ end=+</a>+ keepend contains=htmlItem,htmlScript
  2420.    :syn match htmlItem +<[^>]*>+ contained
  2421.    :syn region htmlScript start=+<script+ end=+</script[^>]*>+ contained extend
  2422.  
  2423. <    Here the htmlItem item does not make the htmlRef item continue
  2424.     further, it is only used to highlight the <> items.  The htmlScript
  2425.     item does extend the htmlRef item.
  2426.  
  2427.     Another example: >
  2428.    :syn region xmlFold start="<a>" end="</a>" fold transparent keepend extend
  2429. <    This defines a region with "keepend", so that its end cannot be
  2430.     changed by contained items, like when the "</a>" is matched to
  2431.     highlight it differently.  But when the xmlFold region is nested (it
  2432.     includes itself), the "extend" applies, so that the "</a>" of a nested
  2433.     region only ends that region, and not the one it is contained in.
  2434.  
  2435.                             *:syn-excludenl*
  2436.     When a pattern for a match or end pattern of a region includes a '$'
  2437.     to match the end-of-line, it will make a region item that it is
  2438.     contained in continue on the next line.  For example, a match with
  2439.     "\\$" (backslash at the end of the line) can make a region continue
  2440.     that would normally stop at the end of the line.  This is the default
  2441.     behavior.  If this is not wanted, there are two ways to avoid it:
  2442.     1. Use "keepend" for the containing item.  This will keep all
  2443.        contained matches from extending the match or region.  It can be
  2444.        used when all contained items must not extend the containing item.
  2445.     2. Use "excludenl" in the contained item.  This will keep that match
  2446.        from extending the containing match or region.  It can be used if
  2447.        only some contained items must not extend the containing item.
  2448.        "excludenl" must be given before the pattern it applies to.
  2449.  
  2450.                             *:syn-matchgroup*
  2451.     "matchgroup" can be used to highlight the start and/or end pattern
  2452.     differently than the body of the region.  Example: >
  2453.   :syntax region String matchgroup=Quote start=+"+  skip=+\\"+  end=+"+
  2454. <    This will highlight the quotes with the "Quote" group, and the text in
  2455.     between with the "String" group.
  2456.     The "matchgroup" is used for all start and end patterns that follow,
  2457.     until the next "matchgroup".  Use "matchgroup=NONE" to go back to not
  2458.     using a matchgroup.
  2459.  
  2460.     In a start or end pattern that is highlighted with "matchgroup" the
  2461.     contained items of the region are not used.  This can be used to avoid
  2462.     that a contained item matches in the start or end pattern match.  When
  2463.     using "transparent", this does not apply to a start or end pattern
  2464.     match that is highlighted with "matchgroup".
  2465.  
  2466.     Here is an example, which highlights three levels of parentheses in
  2467.     different colors: >
  2468.    :sy region par1 matchgroup=par1 start=/(/ end=/)/ contains=par2
  2469.    :sy region par2 matchgroup=par2 start=/(/ end=/)/ contains=par3 contained
  2470.    :sy region par3 matchgroup=par3 start=/(/ end=/)/ contains=par1 contained
  2471.    :hi par1 ctermfg=red guifg=red
  2472.    :hi par2 ctermfg=blue guifg=blue
  2473.    :hi par3 ctermfg=darkgreen guifg=darkgreen
  2474.  
  2475. ==============================================================================
  2476. 6. :syntax arguments                    *:syn-arguments*
  2477.  
  2478. The :syntax commands that define syntax items take a number of arguments.
  2479. The common ones are explained here.  The arguments may be given in any order
  2480. and may be mixed with patterns.
  2481.  
  2482. Not all commands accept all arguments.  This table shows which arguments
  2483. can not be used for all commands:
  2484.                             *E395* *E396*
  2485.             contains  oneline    fold  display  extend~
  2486. :syntax keyword         -     -     -     -     -
  2487. :syntax match        yes     -    yes    yes    yes
  2488. :syntax region        yes    yes    yes    yes    yes
  2489.  
  2490. These arguments can be used for all three commands:
  2491.     contained
  2492.     containedin
  2493.     nextgroup
  2494.     transparent
  2495.     skipwhite
  2496.     skipnl
  2497.     skipempty
  2498.  
  2499.  
  2500. contained                        *:syn-contained*
  2501.  
  2502. When the "contained" argument is given, this item will not be recognized at
  2503. the top level, but only when it is mentioned in the "contains" field of
  2504. another match.  Example: >
  2505.    :syntax keyword Todo    TODO    contained
  2506.    :syntax match   Comment "//.*"  contains=Todo
  2507.  
  2508.  
  2509. display                            *:syn-display*
  2510.  
  2511. If the "display" argument is given, this item will be skipped when the
  2512. detected highlighting will not be displayed.  This will speed up highlighting,
  2513. by skipping this item when only finding the syntax state for the text that is
  2514. to be displayed.
  2515.  
  2516. Generally, you can use "display" for match and region items that meet these
  2517. conditions:
  2518. - The item does not continue past the end of a line.  Example for C: A region
  2519.   for a "/*" comment can't contain "display", because it continues on the next
  2520.   line.
  2521. - The item does not contain items that continue past the end of the line or
  2522.   make it continue on the next line.
  2523. - The item does not change the size of any item it is contained in.  Example
  2524.   for C: A match with "\\$" in a preprocessor match can't have "display",
  2525.   because it may make that preprocessor match shorter.
  2526. - The item does not allow other items to match that didn't match otherwise,
  2527.   and that item may extend the match too far.  Example for C: A match for a
  2528.   "//" comment can't use "display", because a "/*" inside that comment would
  2529.   match then and start a comment which extends past the end of the line.
  2530.  
  2531. Examples, for the C language, where "display" can be used:
  2532. - match with a number
  2533. - match with a label
  2534.  
  2535.  
  2536. transparent                        *:syn-transparent*
  2537.  
  2538. If the "transparent" argument is given, this item will not be highlighted
  2539. itself, but will take the highlighting of the item it is contained in.  This
  2540. is useful for syntax items that don't need any highlighting but are used
  2541. only to skip over a part of the text.
  2542.  
  2543. The "contains=" argument is also inherited from the item it is contained in,
  2544. unless a "contains" argument is given for the transparent item itself.  To
  2545. avoid that unwanted items are contained, use "contains=NONE".  Example, which
  2546. highlights words in strings, but makes an exception for "vim": >
  2547.     :syn match myString /'[^']*'/ contains=myWord,myVim
  2548.     :syn match myWord   /\<[a-z]*\>/ contained
  2549.     :syn match myVim    /\<vim\>/ transparent contained contains=NONE
  2550.     :hi link myString String
  2551.     :hi link myWord   Comment
  2552. Since the "myVim" match comes after "myWord" it is the preferred match (last
  2553. match in the same position overrules an earlier one).  The "transparent"
  2554. argument makes the "myVim" match use the same highlighting as "myString".  But
  2555. it does not contain anything.  If the "contains=NONE" argument would be left
  2556. out, then "myVim" would use the contains argument from myString and allow
  2557. "myWord" to be contained, which will be highlighted as a Constant.  This
  2558. happens because a contained match doesn't match inside itself in the same
  2559. position, thus the "myVim" match doesn't overrule the "myWord" match here.
  2560.  
  2561. When you look at the colored text, it is like looking at layers of contained
  2562. items.  The contained item is on top of the item it is contained in, thus you
  2563. see the contained item.  When a contained item is transparent, you can look
  2564. through, thus you see the item it is contained in.  In a picture:
  2565.  
  2566.         look from here
  2567.  
  2568.         |    |   |    |   |    |
  2569.         V    V   V    V   V    V
  2570.  
  2571.            xxxx      yyy        more contained items
  2572.         ....................    contained item (transparent)
  2573.     =============================    first item
  2574.  
  2575. The 'x', 'y' and '=' represent a highlighted syntax item.  The '.' represent a
  2576. transparent group.
  2577.  
  2578. What you see is:
  2579.  
  2580.     =======xxxx=======yyy========
  2581.  
  2582. Thus you look through the transparent "....".
  2583.  
  2584.  
  2585. oneline                            *:syn-oneline*
  2586.  
  2587. The "oneline" argument indicates that the region does not cross a line
  2588. boundary.  It must match completely in the current line.  However, when the
  2589. region has a contained item that does cross a line boundary, it continues on
  2590. the next line anyway.  A contained item can be used to recognize a line
  2591. continuation pattern.  But the "end" pattern must still match in the first
  2592. line, otherwise the region doesn't even start.
  2593.  
  2594. When the start pattern includes a "\n" to match an end-of-line, the end
  2595. pattern must be found in the same line as where the start pattern ends.  The
  2596. end pattern may also include an end-of-line.  Thus the "oneline" argument
  2597. means that the end of the start pattern and the start of the end pattern must
  2598. be within one line.  This can't be changed by a skip pattern that matches a
  2599. line break.
  2600.  
  2601.  
  2602. fold                            *:syn-fold*
  2603.  
  2604. The "fold" argument makes the fold level increased by one for this item.
  2605. Example: >
  2606.    :syn region myFold start="{" end="}" transparent fold
  2607.    :syn sync fromstart
  2608.    :set foldmethod=syntax
  2609. This will make each {} block form one fold.
  2610.  
  2611. The fold will start on the line where the item starts, and end where the item
  2612. ends.  If the start and end are within the same line, there is no fold.
  2613. The 'foldnestmax' option limits the nesting of syntax folds.
  2614. {not available when Vim was compiled without |+folding| feature}
  2615.  
  2616.  
  2617.             *:syn-contains* *E405* *E406* *E407* *E408* *E409*
  2618. contains={groupname},..
  2619.  
  2620. The "contains" argument is followed by a list of syntax group names.  These
  2621. groups will be allowed to begin inside the item (they may extend past the
  2622. containing group's end).  This allows for recursive nesting of matches and
  2623. regions.  If there is no "contains" argument, no groups will be contained in
  2624. this item.  The group names do not need to be defined before they can be used
  2625. here.
  2626.  
  2627. contains=ALL
  2628.         If the only item in the contains list is "ALL", then all
  2629.         groups will be accepted inside the item.
  2630.  
  2631. contains=ALLBUT,{group-name},..
  2632.         If the first item in the contains list is "ALLBUT", then all
  2633.         groups will be accepted inside the item, except the ones that
  2634.         are listed.  Example: >
  2635.   :syntax region Block start="{" end="}" ... contains=ALLBUT,Function
  2636.  
  2637. contains=TOP
  2638.         If the first item in the contains list is "TOP", then all
  2639.         groups will be accepted that don't have the "contained"
  2640.         argument.
  2641. contains=TOP,{group-name},..
  2642.         Like "TOP", but excluding the groups that are listed.
  2643.  
  2644. contains=CONTAINED
  2645.         If the first item in the contains list is "CONTAINED", then
  2646.         all groups will be accepted that have the "contained"
  2647.         argument.
  2648. contains=CONTAINED,{group-name},..
  2649.         Like "CONTAINED", but excluding the groups that are
  2650.         listed.
  2651.  
  2652.  
  2653. The {group-name} in the "contains" list can be a pattern.  All group names
  2654. that match the pattern will be included (or excluded, if "ALLBUT" is used).
  2655. The pattern cannot contain white space or a ','.  Example: >
  2656.    ... contains=Comment.*,Keyw[0-3]
  2657. The matching will be done at moment the syntax command is executed.  Groups
  2658. that are defined later will not be matched.  Also, if the current syntax
  2659. command defines a new group, it is not matched.  Be careful: When putting
  2660. syntax commands in a file you can't rely on groups NOT being defined, because
  2661. the file may have been sourced before, and ":syn clear" doesn't remove the
  2662. group names.
  2663.  
  2664. The contained groups will also match in the start and end patterns of a
  2665. region.  If this is not wanted, the "matchgroup" argument can be used
  2666. |:syn-matchgroup|.  The "ms=" and "me=" offsets can be used to change the
  2667. region where contained items do match.  Note that this may also limit the
  2668. area that is highlighted
  2669.  
  2670.  
  2671. containedin={groupname}...                *:syn-containedin*
  2672.  
  2673. The "containedin" argument is followed by a list of syntax group names.  The
  2674. item will be allowed to begin inside these groups.  This works as if the
  2675. containing item has a "contains=" argument that includes this item.
  2676.  
  2677. The {groupname}... can be used just like for "contains", as explained above.
  2678.  
  2679. This is useful when adding a syntax item afterwards.  An item can be told to
  2680. be included inside an already existing item, without changing the definition
  2681. of that item.  For example, to highlight a word in a C comment after loading
  2682. the C syntax: >
  2683.     :syn keyword myword HELP containedin=cComment contained
  2684. Note that "contained" is also used, to avoid that the item matches at the top
  2685. level.
  2686.  
  2687. Matches for "containedin" are added to the other places where the item can
  2688. appear.  A "contains" argument may also be added as usual.  Don't forget that
  2689. keywords never contain another item, thus adding them to "containedin" won't
  2690. work.
  2691.  
  2692.  
  2693. nextgroup={groupname},..                *:syn-nextgroup*
  2694.  
  2695. The "nextgroup" argument is followed by a list of syntax group names,
  2696. separated by commas (just like with "contains", so you can also use patterns).
  2697.  
  2698. If the "nextgroup" argument is given, the mentioned syntax groups will be
  2699. tried for a match, after the match or region ends.  If none of the groups have
  2700. a match, highlighting continues normally.  If there is a match, this group
  2701. will be used, even when it is not mentioned in the "contains" field of the
  2702. current group.  This is like giving the mentioned group priority over all
  2703. other groups.  Example: >
  2704.    :syntax match  ccFoobar  "Foo.\{-}Bar"  contains=ccFoo
  2705.    :syntax match  ccFoo     "Foo"        contained nextgroup=ccFiller
  2706.    :syntax region ccFiller  start="."  matchgroup=ccBar  end="Bar"  contained
  2707.  
  2708. This will highlight "Foo" and "Bar" differently, and only when there is a
  2709. "Bar" after "Foo".  In the text line below, "f" shows where ccFoo is used for
  2710. highlighting, and "bbb" where ccBar is used. >
  2711.  
  2712.    Foo asdfasd Bar asdf Foo asdf Bar asdf
  2713.    fff           bbb      fff      bbb
  2714.  
  2715. Note the use of ".\{-}" to skip as little as possible until the next Bar.
  2716. when ".*" would be used, the "asdf" in between "Bar" and "Foo" would be
  2717. highlighted according to the "ccFoobar" group, because the ccFooBar match
  2718. would include the first "Foo" and the last "Bar" in the line (see |pattern|).
  2719.  
  2720.  
  2721. skipwhite                        *:syn-skipwhite*
  2722. skipnl                            *:syn-skipnl*
  2723. skipempty                        *:syn-skipempty*
  2724.  
  2725. These arguments are only used in combination with "nextgroup".  They can be
  2726. used to allow the next group to match after skipping some text:
  2727.     skipwhite    skip over space and Tab characters
  2728.     skipnl        skip over the end of a line
  2729.     skipempty    skip over empty lines (implies a "skipnl")
  2730.  
  2731. When "skipwhite" is present, the white space is only skipped if there is no
  2732. next group that matches the white space.
  2733.  
  2734. When "skipnl" is present, the match with nextgroup may be found in the next
  2735. line.  This only happens when the current item ends at the end of the current
  2736. line!  When "skipnl" is not present, the nextgroup will only be found after
  2737. the current item in the same line.
  2738.  
  2739. When skipping text while looking for a next group, the matches for other
  2740. groups are ignored.  Only when no next group matches, other items are tried
  2741. for a match again.  This means that matching a next group and skipping white
  2742. space and <EOL>s has a higher priority than other items.
  2743.  
  2744. Example: >
  2745.   :syn match ifstart "if.*"     nextgroup=ifline skipwhite skipempty
  2746.   :syn match ifline  "endif"    contained
  2747.   :syn match ifline  "[^ \t].*" nextgroup=ifline skipwhite skipempty contained
  2748. Note that the last match, which matches any non-white text, is put last,
  2749. otherwise the "endif" of the indent would never match, because the "[^ \t].*"
  2750. would match first.
  2751. Note that this example doesn't work for nested "if"s.  You need to add
  2752. "contains" arguments to make that work (omitted for simplicity of the
  2753. example).
  2754.  
  2755. ==============================================================================
  2756. 7. Syntax patterns                *:syn-pattern* *E401* *E402*
  2757.  
  2758. In the syntax commands, a pattern must be surrounded by two identical
  2759. characters.  This is like it works for the ":s" command.  The most common to
  2760. use is the double quote.  But if the pattern contains a double quote, you can
  2761. use another character that is not used in the pattern.  Examples: >
  2762.   :syntax region Comment  start="/\*"  end="\*/"
  2763.   :syntax region String   start=+"+    end=+"+   skip=+\\"+
  2764.  
  2765. See |pattern| for the explanation of what a pattern is.  Syntax patterns are
  2766. always interpreted like the 'magic' options is set, no matter what the actual
  2767. value of 'magic' is.  And the patterns are interpreted like the 'l' flag is
  2768. not included in 'cpoptions'.  This was done to make syntax files portable and
  2769. independent of 'compatible' and 'magic' settings.
  2770.  
  2771. Try to avoid patterns that can match an empty string, such as "[a-z]*".
  2772. This slows down the highlighting a lot, because it matches everywhere.
  2773.  
  2774.                         *:syn-pattern-offset*
  2775. The pattern can be followed by a character offset.  This can be used to
  2776. change the highlighted part, and to change the text area included in the
  2777. match or region (which only matters when trying to match other items).  Both
  2778. are relative to the matched pattern.  The character offset for a skip
  2779. pattern can be used to tell where to continue looking for an end pattern.
  2780.  
  2781. The offset takes the form of "{what}={offset}"
  2782. The {what} can be one of seven strings:
  2783.  
  2784. ms    Match Start    offset for the start of the matched text
  2785. me    Match End    offset for the end of the matched text
  2786. hs    Highlight Start    offset for where the highlighting starts
  2787. he    Highlight End    offset for where the highlighting ends
  2788. rs    Region Start    offset for where the body of a region starts
  2789. re    Region End    offset for where the body of a region ends
  2790. lc    Leading Context    offset past "leading context" of pattern
  2791.  
  2792. The {offset} can be:
  2793.  
  2794. s    start of the matched pattern
  2795. s+{nr}    start of the matched pattern plus {nr} chars to the right
  2796. s-{nr}    start of the matched pattern plus {nr} chars to the left
  2797. e    end of the matched pattern
  2798. e+{nr}    end of the matched pattern plus {nr} chars to the right
  2799. e-{nr}    end of the matched pattern plus {nr} chars to the left
  2800. {nr}    (for "lc" only): start matching {nr} chars to the left
  2801.  
  2802. Examples: "ms=s+1", "hs=e-2", "lc=3".
  2803.  
  2804. Although all offsets are accepted after any pattern, they are not always
  2805. meaningful.  This table shows which offsets are actually used:
  2806.  
  2807.             ms   me   hs   he   rs   re      lc ~
  2808. match item        yes  yes  yes  yes  -    -    yes
  2809. region item start   yes  -    yes  -    yes  -    yes
  2810. region item skip    -    yes  -    -    -    -    yes
  2811. region item end     -    yes  -    yes  -    yes  yes
  2812.  
  2813. Offsets can be concatenated, with a ',' in between.  Example: >
  2814.   :syn match String  /"[^"]*"/hs=s+1,he=e-1
  2815. <
  2816.     some "string" text
  2817.       ^^^^^^        highlighted
  2818.  
  2819. Notes:
  2820. - There must be no white space between the pattern and the character
  2821.   offset(s).
  2822. - The highlighted area will never be outside of the matched text.
  2823. - A negative offset for an end pattern may not always work, because the end
  2824.   pattern may be detected when the highlighting should already have stopped.
  2825. - The start of a match cannot be in a line other than where the pattern
  2826.   matched.  This doesn't work: "a\nb"ms=e.  You can make the highlighting
  2827.   start in another line, this does work: "a\nb"hs=e.
  2828.  
  2829. Example (match a comment but don't highlight the /* and */): >
  2830.   :syntax region Comment start="/\*"hs=e+1 end="\*/"he=s-1
  2831. <
  2832.     /* this is a comment */
  2833.       ^^^^^^^^^^^^^^^^^^^     highlighted
  2834.  
  2835. A more complicated Example: >
  2836.   :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
  2837. <
  2838.      abcfoostringbarabc
  2839.         mmmmmmmmmmm        match
  2840.           ssrrrreee        highlight start/region/end ("Foo", "Exa" and "Bar")
  2841.  
  2842. Leading context            *:syn-lc* *:syn-leading* *:syn-context*
  2843.  
  2844. Note: This is an obsolete feature, only included for backwards compatibility
  2845. with previous Vim versions.  It's now recommended to use the |/\@<=| construct
  2846. in the pattern.
  2847.  
  2848. The "lc" offset specifies leading context -- a part of the pattern that must
  2849. be present, but is not considered part of the match.  An offset of "lc=n" will
  2850. cause Vim to step back n columns before attempting the pattern match, allowing
  2851. characters which have already been matched in previous patterns to also be
  2852. used as leading context for this match.  This can be used, for instance, to
  2853. specify that an "escaping" character must not precede the match: >
  2854.  
  2855.   :syn match ZNoBackslash "[^\\]z"ms=s+1
  2856.   :syn match WNoBackslash "[^\\]w"lc=1
  2857.   :syn match Underline "_\+"
  2858. <
  2859.       ___zzzz ___wwww
  2860.       ^^^     ^^^      matches Underline
  2861.           ^ ^      matches ZNoBackslash
  2862.              ^^^^ matches WNoBackslash
  2863.  
  2864. The "ms" offset is automatically set to the same value as the "lc" offset,
  2865. unless you set "ms" explicitly.
  2866.  
  2867.  
  2868. Multi-line patterns                    *:syn-multi-line*
  2869.  
  2870. The patterns can include "\n" to match an end-of-line.  Mostly this works as
  2871. expected, but there are a few exceptions.
  2872.  
  2873. When using a start pattern with an offset, the start of the match is not
  2874. allowed to start in a following line.  The highlighting can start in a
  2875. following line though.
  2876.  
  2877. The skip pattern can include the "\n", but the search for an end pattern will
  2878. continue in the first character of the next line, also when that character is
  2879. matched by the skip pattern.  This is because redrawing may start in any line
  2880. halfway a region and there is no check if the skip pattern started in a
  2881. previous line.  For example, if the skip pattern is "a\nb" and an end pattern
  2882. is "b", the end pattern does match in the second line of this: >
  2883.      x x a
  2884.      b x x
  2885. Generally this means that the skip pattern should not match any characters
  2886. after the "\n".
  2887.  
  2888.  
  2889. External matches                    *:syn-ext-match*
  2890.  
  2891. These extra regular expression items are available in region patterns:
  2892.  
  2893.                         */\z(* */\z(\)* *E50* *E52*
  2894.     \z(\)    Marks the sub-expression as "external", meaning that it is can
  2895.         be accessed from another pattern match.  Currently only usable
  2896.         in defining a syntax region start pattern.
  2897.  
  2898.     \z1  ...  \z9                */\z1* */\z2* *\z9* *E66* *E67*
  2899.         Matches the same string that was matched by the corresponding
  2900.         sub-expression in a previous start pattern match.
  2901.  
  2902. Sometimes the start and end patterns of a region need to share a common
  2903. sub-expression.  A common example is the "here" document in Perl and many Unix
  2904. shells.  This effect can be achieved with the "\z" special regular expression
  2905. items, which marks a sub-expression as "external", in the sense that it can be
  2906. referenced from outside the pattern in which it is defined.  The here-document
  2907. example, for instance, can be done like this: >
  2908.   :syn region hereDoc start="<<\z(\I\i*\)" end="^\z1$"
  2909.  
  2910. As can be seen here, the \z actually does double duty.  In the start pattern,
  2911. it marks the "\(\I\i*\)" sub-expression as external; in the end pattern, it
  2912. changes the \1 back-reference into an external reference referring to the
  2913. first external sub-expression in the start pattern.  External references can
  2914. also be used in skip patterns: >
  2915.   :syn region foo start="start \(\I\i*\)" skip="not end \z1" end="end \z1"
  2916.  
  2917. Note that normal and external sub-expressions are completely orthogonal and
  2918. indexed separately; for instance, if the pattern "\z(..\)\(..\)" is applied
  2919. to the string "aabb", then \1 will refer to "bb" and \z1 will refer to "aa".
  2920. Note also that external sub-expressions cannot be accessed as back-references
  2921. within the same pattern like normal sub-expressions.  If you want to use one
  2922. sub-expression as both a normal and an external sub-expression, you can nest
  2923. the two, as in "\(\z(...\)\)".
  2924.  
  2925. Note that only matches within a single line can be used.  Multi-line matches
  2926. cannot be referred to.
  2927.  
  2928. ==============================================================================
  2929. 8. Syntax clusters                    *:syn-cluster* *E400*
  2930.  
  2931. :sy[ntax] cluster {cluster-name} [contains={group-name}..]
  2932.                  [add={group-name}..]
  2933.                  [remove={group-name}..]
  2934.  
  2935. This command allows you to cluster a list of syntax groups together under a
  2936. single name.
  2937.  
  2938.     contains={group-name}..
  2939.         The cluster is set to the specified list of groups.
  2940.     add={group-name}..
  2941.         The specified groups are added to the cluster.
  2942.     remove={group-name}..
  2943.         The specified groups are removed from the cluster.
  2944.  
  2945. A cluster so defined may be referred to in a contains=.., nextgroup=.., add=..
  2946. or remove=.. list with a "@" prefix.  You can also use this notation to
  2947. implicitly declare a cluster before specifying its contents.
  2948.  
  2949. Example: >
  2950.    :syntax match Thing "# [^#]\+ #" contains=@ThingMembers
  2951.    :syntax cluster ThingMembers contains=ThingMember1,ThingMember2
  2952.  
  2953. As the previous example suggests, modifications to a cluster are effectively
  2954. retroactive; the membership of the cluster is checked at the last minute, so
  2955. to speak: >
  2956.    :syntax keyword A aaa
  2957.    :syntax cluster AandB contains=A
  2958.    :syntax match Stuff "( aaa bbb )" contains=@AandB
  2959.    :syntax cluster AandB add=B    " now both keywords are matched in Stuff
  2960.  
  2961. This also has implications for nested clusters: >
  2962.    :syntax keyword A aaa
  2963.    :syntax keyword B bbb
  2964.    :syntax cluster SmallGroup contains=B
  2965.    :syntax cluster BigGroup contains=A,@SmallGroup
  2966.    :syntax match Stuff "( aaa bbb )" contains=@BigGroup
  2967.    :syntax cluster BigGroup remove=B    " no effect, since B isn't in BigGroup
  2968.    :syntax cluster SmallGroup remove=B  " now bbb isn't matched within Stuff
  2969.  
  2970. ==============================================================================
  2971. 9. Including syntax files                *:syn-include* *E397*
  2972.  
  2973. It is often useful for one language's syntax file to include a syntax file for
  2974. a related language.  Depending on the exact relationship, this can be done in
  2975. two different ways:
  2976.  
  2977.     - If top-level syntax items in the included syntax file are to be
  2978.       allowed at the top level in the including syntax, you can simply use
  2979.       the |:runtime| command: >
  2980.  
  2981.   " In cpp.vim:
  2982.   :runtime! syntax/c.vim
  2983.   :unlet b:current_syntax
  2984.  
  2985. <    - If top-level syntax items in the included syntax file are to be
  2986.       contained within a region in the including syntax, you can use the
  2987.       ":syntax include" command:
  2988.  
  2989. :sy[ntax] include [@{grouplist-name}] {file-name}
  2990.  
  2991.       All syntax items declared in the included file will have the
  2992.       "contained" flag added.  In addition, if a group list is specified,
  2993.       all top-level syntax items in the included file will be added to
  2994.       that list. >
  2995.  
  2996.    " In perl.vim:
  2997.    :syntax include @Pod <sfile>:p:h/pod.vim
  2998.    :syntax region perlPOD start="^=head" end="^=cut" contains=@Pod
  2999. <
  3000.       When {file-name} is an absolute path (starts with "/", "c:", "$VAR"
  3001.       or "<sfile>") that file is sourced.  When it is a relative path
  3002.       (e.g., "syntax/pod.vim") the file is searched for in 'runtimepath'.
  3003.       All matching files are loaded.  Using a relative path is
  3004.       recommended, because it allows a user to replace the included file
  3005.       with his own version, without replacing the file that does the ":syn
  3006.       include".
  3007.  
  3008. ==============================================================================
  3009. 10. Synchronizing                *:syn-sync* *E403* *E404*
  3010.  
  3011. Vim wants to be able to start redrawing in any position in the document.  To
  3012. make this possible it needs to know the syntax state at the position where
  3013. redrawing starts.
  3014.  
  3015. :sy[ntax] sync [ccomment [group-name] | minlines={N} | ...]
  3016.  
  3017. There are four ways to synchronize:
  3018. 1. Always parse from the start of the file.
  3019.    |:syn-sync-first|
  3020. 2. Based on C-style comments.  Vim understands how C-comments work and can
  3021.    figure out if the current line starts inside or outside a comment.
  3022.    |:syn-sync-second|
  3023. 3. Jumping back a certain number of lines and start parsing there.
  3024.    |:syn-sync-third|
  3025. 4. Searching backwards in the text for a pattern to sync on.
  3026.    |:syn-sync-fourth|
  3027.  
  3028.                 *:syn-sync-maxlines* *:syn-sync-minlines*
  3029. For the last three methods, the line range where the parsing can start is
  3030. limited by "minlines" and "maxlines".
  3031.  
  3032. If the "minlines={N}" argument is given, the parsing always starts at least
  3033. that many lines backwards.  This can be used if the parsing may take a few
  3034. lines before it's correct, or when it's not possible to use syncing.
  3035.  
  3036. If the "maxlines={N}" argument is given, the number of lines that are searched
  3037. for a comment or syncing pattern is restricted to N lines backwards (after
  3038. adding "minlines".  This is useful if you have few things to sync on and a
  3039. slow machine.  Example: >
  3040.    :syntax sync ccomment maxlines=500
  3041. <
  3042.                         *:syn-sync-linebreaks*
  3043. When using a pattern that matches multiple lines, a change in one line may
  3044. cause a pattern to no longer match in a previous line.  This means has to
  3045. start above where the change was made.  How many lines can be specified with
  3046. the "linebreaks" argument.  For example, when a pattern may include one line
  3047. break use this: >
  3048.    :syntax sync linebreaks=1
  3049. The result is that redrawing always starts at least one line before where a
  3050. change was made.  The default value for "linebreaks" is zero.  Usually the
  3051. value for "minlines" is bigger than "linebreaks".
  3052.  
  3053.  
  3054. First syncing method:            *:syn-sync-first*
  3055. >
  3056.    :syntax sync fromstart
  3057.  
  3058. The file will be parsed from the start.  This makes syntax highlighting
  3059. accurate, but can be slow for long files.  Vim caches previously parsed text,
  3060. so that it's only slow when parsing the text for the first time.  However,
  3061. when making changes some part of the next needs to be parsed again (worst
  3062. case: to the end of the file).
  3063.  
  3064. Using "fromstart" is equivalent to using "minlines" with a very large number.
  3065.  
  3066.  
  3067. Second syncing method:            *:syn-sync-second* *:syn-sync-ccomment*
  3068.  
  3069. For the second method, only the "ccomment" argument needs to be given.
  3070. Example: >
  3071.    :syntax sync ccomment
  3072.  
  3073. When Vim finds that the line where displaying starts is inside a C-style
  3074. comment, the last region syntax item with the group-name "Comment" will be
  3075. used.  This requires that there is a region with the group-name "Comment"!
  3076. An alternate group name can be specified, for example: >
  3077.    :syntax sync ccomment javaComment
  3078. This means that the last item specified with "syn region javaComment" will be
  3079. used for the detected C comment region.  This only works properly if that
  3080. region does have a start pattern "\/*" and an end pattern "*\/".
  3081.  
  3082. The "maxlines" argument can be used to restrict the search to a number of
  3083. lines.  The "minlines" argument can be used to at least start a number of
  3084. lines back (e.g., for when there is some construct that only takes a few
  3085. lines, but it hard to sync on).
  3086.  
  3087. Note: Syncing on a C comment doesn't work properly when strings are used
  3088. that cross a line and contain a "*/".  Since letting strings cross a line
  3089. is a bad programming habit (many compilers give a warning message), and the
  3090. chance of a "*/" appearing inside a comment is very small, this restriction
  3091. is hardly ever noticed.
  3092.  
  3093.  
  3094. Third syncing method:                *:syn-sync-third*
  3095.  
  3096. For the third method, only the "minlines={N}" argument needs to be given.
  3097. Vim will subtract {N} from the line number and start parsing there.  This
  3098. means {N} extra lines need to be parsed, which makes this method a bit slower.
  3099. Example: >
  3100.    :syntax sync minlines=50
  3101.  
  3102. "lines" is equivalent to "minlines" (used by older versions).
  3103.  
  3104.  
  3105. Fourth syncing method:                *:syn-sync-fourth*
  3106.  
  3107. The idea is to synchronize on the end of a few specific regions, called a
  3108. sync pattern.  Only regions can cross lines, so when we find the end of some
  3109. region, we might be able to know in which syntax item we are.  The search
  3110. starts in the line just above the one where redrawing starts.  From there
  3111. the search continues backwards in the file.
  3112.  
  3113. This works just like the non-syncing syntax items.  You can use contained
  3114. matches, nextgroup, etc.  But there are a few differences:
  3115. - Keywords cannot be used.
  3116. - The syntax items with the "sync" keyword form a completely separated group
  3117.   of syntax items.  You can't mix syncing groups and non-syncing groups.
  3118. - The matching works backwards in the buffer (line by line), instead of
  3119.   forwards.
  3120. - A line continuation pattern can be given.  It is used to decide which group
  3121.   of lines need to be searched like they were one line.  This means that the
  3122.   search for a match with the specified items starts in the first of the
  3123.   consecutive that contain the continuation pattern.
  3124. - When using "nextgroup" or "contains", this only works within one line (or
  3125.   group of continued lines).
  3126. - When using a region, it must start and end in the same line (or group of
  3127.   continued lines).  Otherwise the end is assumed to be at the end of the
  3128.   line (or group of continued lines).
  3129. - When a match with a sync pattern is found, the rest of the line (or group of
  3130.   continued lines) is searched for another match.  The last match is used.
  3131.   This is used when a line can contain both the start end the end of a region
  3132.   (e.g., in a C-comment like /* this */, the last "*/" is used).
  3133.  
  3134. There are two ways how a match with a sync pattern can be used:
  3135. 1. Parsing for highlighting starts where redrawing starts (and where the
  3136.    search for the sync pattern started).  The syntax group that is expected
  3137.    to be valid there must be specified.  This works well when the regions
  3138.    that cross lines cannot contain other regions.
  3139. 2. Parsing for highlighting continues just after the match.  The syntax group
  3140.    that is expected to be present just after the match must be specified.
  3141.    This can be used when the previous method doesn't work well.  It's much
  3142.    slower, because more text needs to be parsed.
  3143. Both types of sync patterns can be used at the same time.
  3144.  
  3145. Besides the sync patterns, other matches and regions can be specified, to
  3146. avoid finding unwanted matches.
  3147.  
  3148. [The reason that the sync patterns are given separately, is that mostly the
  3149. search for the sync point can be much simpler than figuring out the
  3150. highlighting.  The reduced number of patterns means it will go (much)
  3151. faster.]
  3152.  
  3153.                         *syn-sync-grouphere* *E393* *E394*
  3154.     :syntax sync match {sync-group-name} grouphere {group-name} "pattern" ..
  3155.  
  3156.     Define a match that is used for syncing.  {group-name} is the
  3157.     name of a syntax group that follows just after the match.  Parsing
  3158.     of the text for highlighting starts just after the match.  A region
  3159.     must exist for this {group-name}.  The first one defined will be used.
  3160.     "NONE" can be used for when there is no syntax group after the match.
  3161.  
  3162.                         *syn-sync-groupthere*
  3163.     :syntax sync match {sync-group-name} groupthere {group-name} "pattern" ..
  3164.  
  3165.     Like "grouphere", but {group-name} is the name of a syntax group that
  3166.     is to be used at the start of the line where searching for the sync
  3167.     point started.  The text between the match and the start of the sync
  3168.     pattern searching is assumed not to change the syntax highlighting.
  3169.     For example, in C you could search backwards for "/*" and "*/".  If
  3170.     "/*" is found first, you know that you are inside a comment, so the
  3171.     "groupthere" is "cComment".  If "*/" is found first, you know that you
  3172.     are not in a comment, so the "groupthere" is "NONE".  (in practice
  3173.     it's a bit more complicated, because the "/*" and "*/" could appear
  3174.     inside a string.  That's left as an exercise to the reader...).
  3175.  
  3176.     :syntax sync match ..
  3177.     :syntax sync region ..
  3178.  
  3179.     Without a "groupthere" argument.  Define a region or match that is
  3180.     skipped while searching for a sync point.
  3181.  
  3182.     :syntax sync linecont {pattern}
  3183.  
  3184.     When {pattern} matches in a line, it is considered to continue in
  3185.     the next line.  This means that the search for a sync point will
  3186.     consider the lines to be concatenated.
  3187.  
  3188. If the "maxlines={N}" argument is given too, the number of lines that are
  3189. searched for a match is restricted to N.  This is useful if you have very
  3190. few things to sync on and a slow machine.  Example: >
  3191.    :syntax sync maxlines=100
  3192.  
  3193. You can clear all sync settings with: >
  3194.    :syntax sync clear
  3195.  
  3196. You can clear specific sync patterns with: >
  3197.    :syntax sync clear {sync-group-name} ..
  3198.  
  3199. ==============================================================================
  3200. 11. Listing syntax items        *:syntax* *:sy* *:syn* *:syn-list*
  3201.  
  3202. This commands lists all the syntax items: >
  3203.  
  3204.     :sy[ntax] [list]
  3205.  
  3206. To show the syntax items for one syntax group: >
  3207.  
  3208.     :sy[ntax] list {group-name}
  3209.  
  3210. To list the syntax groups in one cluster:            *E392*  >
  3211.  
  3212.     :sy[ntax] list @{cluster-name}
  3213.  
  3214. See above for other arguments for the ":syntax" command.
  3215.  
  3216. Note that the ":syntax" command can be abbreviated to ":sy", although ":syn"
  3217. is mostly used, because it looks better.
  3218.  
  3219. ==============================================================================
  3220. 12. Highlight command            *:highlight* *:hi* *E28* *E411* *E415*
  3221.  
  3222. There are three types of highlight groups:
  3223. - The ones used for specific languages.  For these the name starts with the
  3224.   name of the language.  Many of these don't have any attributes, but are
  3225.   linked to a group of the second type.
  3226. - The ones used for all syntax languages.
  3227. - The ones used for the 'highlight' option.
  3228.                             *hitest.vim*
  3229. You can see all the groups currently active with this command: >
  3230.     :so $VIMRUNTIME/syntax/hitest.vim
  3231. This will open a new window containing all highlight group names, displayed
  3232. in their own color.
  3233.  
  3234.                         *:colo* *:colorscheme* *E185*
  3235. :colo[rscheme] {name}    Load color scheme {name}.  This searches 'runtimepath'
  3236.             for the file "colors/{name}.vim.  The first one that
  3237.             is found is loaded.
  3238.             To see the name of the currently active color scheme: >
  3239.                 :echo colors_name
  3240.  
  3241. :hi[ghlight]        List all the current highlight groups that have
  3242.             attributes set.
  3243.  
  3244. :hi[ghlight] {group-name}
  3245.             List one highlight group.
  3246.  
  3247. :hi[ghlight] clear    Reset all highlighting to the defaults.  Removes all
  3248.             highlighting for groups added by the user!
  3249.             Uses the current value of 'background' to decide which
  3250.             default colors to use.
  3251.  
  3252. :hi[ghlight] clear {group-name}
  3253. :hi[ghlight] {group-name} NONE
  3254.             Disable the highlighting for one highlight group.  It
  3255.             is _not_ set back to the default colors.
  3256.  
  3257. :hi[ghlight] [default] {group-name} {key}={arg} ..
  3258.             Add a highlight group, or change the highlighting for
  3259.             an existing group.
  3260.             See |highlight-args| for the {key}={arg} arguments.
  3261.             See |:highlight-default| for the optional [default]
  3262.             argument.
  3263.  
  3264. Normally a highlight group is added once, in the *.vim file.  This sets
  3265. the default values for the highlighting.  After that, you can use additional
  3266. highlight commands to change the arguments that you want to set to
  3267. non-default values.  The value "NONE" can be used to switch the value off or
  3268. go back to the default value.
  3269.  
  3270. Example.  The syntax.vim file contains this line: >
  3271.    :hi Comment    term=bold ctermfg=Cyan guifg=#80a0ff
  3272.  
  3273. You can change this by giving another ":highlight: command: >
  3274.    :hi Comment    gui=bold
  3275.  
  3276. Note that all settings that are not included remain the same, only the
  3277. specified field is used, and settings are merged with previous ones.  So, the
  3278. result is like this single command has been used: >
  3279.    :hi Comment    term=bold ctermfg=Cyan guifg=#80a0ff gui=bold
  3280. <
  3281.                     *highlight-args* *E416* *E417* *E423*
  3282. There are three types of terminals for highlighting:
  3283. term    a normal terminal (vt100, xterm)
  3284. cterm    a color terminal (MS-DOS console, color-xterm, these have the "Co"
  3285.     termcap entry)
  3286. gui    the GUI
  3287.  
  3288. For each type the highlighting can be given.  This makes it possible to use
  3289. the same syntax file on all terminals, and use the optimal highlighting.
  3290.  
  3291. 1. highlight arguments for normal terminals
  3292.  
  3293. term={attr-list}            *attr-list* *highlight-term* *E418*
  3294.     attr-list is a comma separated list (without spaces) of the
  3295.     following items (in any order):
  3296.         bold
  3297.         underline
  3298.         reverse
  3299.         inverse        same as reverse
  3300.         italic
  3301.         standout
  3302.         NONE        no attributes used (used to reset it)
  3303.  
  3304.     Note that "bold" can be used here and by using a bold font.  They
  3305.     have the same effect.
  3306.  
  3307. start={term-list}                *highlight-start* *E422*
  3308. stop={term-list}                *term-list* *highlight-stop*
  3309.     These lists of terminal codes can be used to get
  3310.     non-standard attributes on a terminal.
  3311.  
  3312.     The escape sequence specified with the "start" argument
  3313.     is written before the characters in the highlighted
  3314.     area.  It can be anything that you want to send to the
  3315.     terminal to highlight this area.  The escape sequence
  3316.     specified with the "stop" argument is written after the
  3317.     highlighted area.  This should undo the "start" argument.
  3318.     Otherwise the screen will look messed up.
  3319.  
  3320.     The {term-list} can have two forms:
  3321.  
  3322.     1. A string with escape sequences.
  3323.        This is any string of characters, except that it can't start with
  3324.        "t_" and blanks are not allowed.  The <> notation is recognized
  3325.        here, so you can use things like "<Esc>" and "<Space>".  Example:
  3326.         start=<Esc>[27h;<Esc>[<Space>r;
  3327.  
  3328.     2. A list of terminal codes.
  3329.        Each terminal code has the form "t_xx", where "xx" is the name of
  3330.        the termcap entry.  The codes have to be separated with commas.
  3331.        White space is not allowed.  Example:
  3332.         start=t_C1,t_BL
  3333.        The terminal codes must exist for this to work.
  3334.  
  3335.  
  3336. 2. highlight arguments for color terminals
  3337.  
  3338. cterm={attr-list}                    *highlight-cterm*
  3339.     See above for the description of {attr-list} |attr-list|.
  3340.     The "cterm" argument is likely to be different from "term", when
  3341.     colors are used.  For example, in a normal terminal comments could
  3342.     be underlined, in a color terminal they can be made Blue.
  3343.     Note: Many terminals (e.g., DOS console) can't mix these attributes
  3344.     with coloring.  Use only one of "cterm=" OR "ctermfg=" OR "ctermbg=".
  3345.  
  3346. ctermfg={color-nr}                *highlight-ctermfg* *E421*
  3347. ctermbg={color-nr}                *highlight-ctermbg*
  3348.     The {color-nr} argument is a color number.  Its range is zero to
  3349.     (not including) the number given by the termcap entry "Co".
  3350.     The actual color with this number depends on the type of terminal
  3351.     and its settings.  Sometimes the color also depends on the settings of
  3352.     "cterm".  For example, on some systems "cterm=bold ctermfg=3" gives
  3353.     another color, on others you just get color 3.
  3354.  
  3355.     For an xterm this depends on your resources, and is a bit
  3356.     unpredictable.  See your xterm documentation for the defaults.  The
  3357.     colors for a color-xterm can be changed from the .Xdefaults file.
  3358.     Unfortunately this means that it's not possible to get the same colors
  3359.     for each user.  See |xterm-color| for info about color xterms.
  3360.  
  3361.     The MSDOS standard colors are fixed (in a console window), so these
  3362.     have been used for the names.  But the meaning of color names in X11
  3363.     are fixed, so these color settings have been used, to make the
  3364.     highlighting settings portable (complicated, isn't it?).  The
  3365.     following names are recognized, with the color number used:
  3366.  
  3367.                             *cterm-colors*
  3368.         NR-16   NR-8    COLOR NAME ~
  3369.         0        0        Black
  3370.         1        4        DarkBlue
  3371.         2       2        DarkGreen
  3372.         3       6        DarkCyan
  3373.         4       1        DarkRed
  3374.         5       5        DarkMagenta
  3375.         6       3        Brown, DarkYellow
  3376.         7       7        LightGray, LightGrey, Gray, Grey
  3377.         8        0*        DarkGray, DarkGrey
  3378.         9        4*        Blue, LightBlue
  3379.         10        2*        Green, LightGreen
  3380.         11        6*        Cyan, LightCyan
  3381.         12        1*        Red, LightRed
  3382.         13        5*        Magenta, LightMagenta
  3383.         14        3*        Yellow, LightYellow
  3384.         15        7*        White
  3385.  
  3386.     The number under "NR-16" is used for 16-color terminals ('t_Co'
  3387.     greater than or equal to 16).  The number under "NR-8" is used for
  3388.     8-color terminals ('t_Co' less than 16).  The '*' indicates that the
  3389.     bold attribute is set for ctermfg.  In many 8-color terminals (e.g.,
  3390.     "linux"), this causes the bright colors to appear.  This doesn't work
  3391.     for background colors!  Without the '*' the bold attribute is removed.
  3392.     If you want to set the bold attribute in a different way, put a
  3393.     "cterm=" argument AFTER the "ctermfg=" or "ctermbg=" argument.  Or use
  3394.     a number instead of a color name.
  3395.  
  3396.     The case of the color names is ignored.
  3397.     Note that for 16 color ansi style terminals (including xterms), the
  3398.     numbers in the NR-8 column is used. Here '*' means 'add 8' so that Blue
  3399.     is 12, DarkGray is 8 etc.
  3400.  
  3401.     Note that for some color terminals these names may result in the wrong
  3402.     colors!
  3403.  
  3404.                             *:hi-normal-cterm*
  3405.     When setting the "ctermfg" or "ctermbg" colors for the Normal group,
  3406.     these will become the colors used for the non-highlighted text.
  3407.     Example: >
  3408.         :highlight Normal ctermfg=grey ctermbg=darkblue
  3409. <    When setting the "ctermbg" color for the Normal group, the
  3410.     'background' option will be adjusted automatically.  This causes the
  3411.     highlight groups that depend on 'background' to change!  This means
  3412.     you should set the colors for Normal first, before setting other
  3413.     colors.
  3414.     When a colorscheme is being used, changing 'background' causes it to
  3415.     be reloaded, which may reset all colors (including Normal).  First
  3416.     delete the "colors_name" variable when you don't want this.
  3417.  
  3418.     When you have set "ctermfg" or "ctermbg" for the Normal group, Vim
  3419.     needs to reset the color when exiting.  This is done with the "op"
  3420.     termcap entry |t_op|.  If this doesn't work correctly, try setting the
  3421.     't_op' option in your .vimrc.
  3422.                             *E419* *E420*
  3423.     When Vim knows the normal foreground and background colors, "fg" and
  3424.     "bg" can be used as color names.  This only works after setting the
  3425.     colors for the Normal group and for the MS-DOS console.  Example, for
  3426.     reverse video: >
  3427.         :highlight Visual ctermfg=bg ctermbg=fg
  3428. <    Note that the colors are used that are valid at the moment this
  3429.     command are given.  If the Normal group colors are changed later, the
  3430.     "fg" and "bg" colors will not be adjusted.
  3431.  
  3432.  
  3433. 3. highlight arguments for the GUI
  3434.  
  3435. gui={attr-list}                        *highlight-gui*
  3436.     These give the attributes to use in the GUI mode.
  3437.     See |attr-list| for a description.
  3438.     Note that "bold" can be used here and by using a bold font.  They
  3439.     have the same effect.
  3440.     Note that the attributes are ignored for the "Normal" group.
  3441.  
  3442. font={font-name}                    *highlight-font*
  3443.     font-name is the name of a font, as it is used on the system Vim
  3444.     runs on.  For X11 this is a complicated name, for example: >
  3445.    font=-misc-fixed-bold-r-normal--14-130-75-75-c-70-iso8859-1
  3446. <
  3447.     The font-name "NONE" can be used to revert to the default font.
  3448.     When setting the font for the "Normal" group, this becomes the default
  3449.     font (until the 'guifont' option is changed; the last one set is
  3450.     used).
  3451.     The following only works with Motif and Athena, not with other GUIs:
  3452.     When setting the font for the "Menu" group, the menus will be changed.
  3453.     When setting the font for the "Tooltip" group, the tooltips will be
  3454.     changed.
  3455.     All fonts used, except for Menu and Tooltip, should be of the same
  3456.     character size as the default font!  Otherwise redrawing problems will
  3457.     occur.
  3458.  
  3459. guifg={color-name}                    *highlight-guifg*
  3460. guibg={color-name}                    *highlight-guibg*
  3461.     These give the foreground (guifg) and background (guibg) color to
  3462.     use in the GUI.  There are a few special names:
  3463.         NONE        no color (transparent)
  3464.         bg        use normal background color
  3465.         background    use normal background color
  3466.         fg        use normal foreground color
  3467.         foreground    use normal foreground color
  3468.     To use a color name with an embedded space or other special character,
  3469.     put it in single quotes.  The single quote cannot be used then.
  3470.     Example: >
  3471.         :hi comment guifg='salmon pink'
  3472. <
  3473.                             *gui-colors*
  3474.     Suggested color names (these are available on most systems):
  3475.         Red        LightRed    DarkRed
  3476.         Green    LightGreen    DarkGreen    SeaGreen
  3477.         Blue    LightBlue    DarkBlue    SlateBlue
  3478.         Cyan    LightCyan    DarkCyan
  3479.         Magenta    LightMagenta    DarkMagenta
  3480.         Yellow    LightYellow    Brown        DarkYellow
  3481.         Gray    LightGray    DarkGray
  3482.         Black    White
  3483.         Orange    Purple        Violet
  3484.  
  3485.     In the Win32 GUI version, additional system colors are available.  See
  3486.     |win32-colors|.
  3487.  
  3488.     You can also specify a color by its Red, Green and Blue values.
  3489.     The format is "#rrggbb", where
  3490.         "rr"    is the Red value
  3491.         "bb"    is the Blue value
  3492.         "gg"    is the Green value
  3493.     All values are hexadecimal, range from "00" to "ff".  Examples: >
  3494.   :highlight Comment guifg=#11f0c3 guibg=#ff00ff
  3495. <
  3496.                     *highlight-groups* *highlight-default*
  3497. These are the default highlighting groups.  These groups are used by the
  3498. 'highlight' option default.  Note that the highlighting depends on the value
  3499. of 'background'.  You can see the current settings with the ":highlight"
  3500. command.
  3501.                             *hl-Cursor*
  3502. Cursor        the character under the cursor
  3503.                             *hl-CursorIM*
  3504. CursorIM    like Cursor, but used when in IME mode |CursorIM|
  3505.                             *hl-Directory*
  3506. Directory    directory names (and other special names in listings)
  3507.                             *hl-DiffAdd*
  3508. DiffAdd        diff mode: Added line |diff.txt|
  3509.                             *hl-DiffChange*
  3510. DiffChange    diff mode: Changed line |diff.txt|
  3511.                             *hl-DiffDelete*
  3512. DiffDelete    diff mode: Deleted line |diff.txt|
  3513.                             *hl-DiffText*
  3514. DiffText    diff mode: Changed text within a changed line |diff.txt|
  3515.                             *hl-ErrorMsg*
  3516. ErrorMsg    error messages on the command line
  3517.                             *hl-VertSplit*
  3518. VertSplit    the column separating vertically split windows
  3519.                             *hl-Folded*
  3520. Folded        line used for closed folds
  3521.                             *hl-FoldColumn*
  3522. FoldColumn    'foldcolumn'
  3523.                             *hl-IncSearch*
  3524. IncSearch    'incsearch' highlighting; also used for the text replaced with
  3525.         ":s///c"
  3526.                             *hl-LineNr*
  3527. LineNr        line number for ":number" and ":#" commands, and when 'number'
  3528.         option is set.
  3529.                             *hl-ModeMsg*
  3530. ModeMsg        'showmode' message (e.g., "-- INSERT --")
  3531.                             *hl-MoreMsg*
  3532. MoreMsg        |more-prompt|
  3533.                             *hl-NonText*
  3534. NonText        '~' and '@' at the end of the window, characters from
  3535.         'showbreak' and other characters that do not really exist in
  3536.         the text (e.g., ">" displayed when a double-wide character
  3537.         doesn't fit at the end of the line).
  3538.                             *hl-Normal*
  3539. Normal        normal text
  3540.                             *hl-Question*
  3541. Question    |hit-enter| prompt and yes/no questions
  3542.                             *hl-Search*
  3543. Search        Last search pattern highlighting (see 'hlsearch').
  3544.         Also used for highlighting the current line in the quickfix
  3545.         window and similar items that need to stand out.
  3546.                             *hl-SpecialKey*
  3547. SpecialKey    Meta and special keys listed with ":map", also for text used
  3548.         to show unprintable characters in the text, 'listchars'.
  3549.         Generally: text that is displayed differently from what it
  3550.         really is.
  3551.                             *hl-StatusLine*
  3552. StatusLine    status line of current window
  3553.                             *hl-StatusLineNC*
  3554. StatusLineNC    status lines of not-current windows
  3555.         Note: if this is equal to "StatusLine" Vim will use "^^^" in
  3556.         the status line of the current window.
  3557.                             *hl-Title*
  3558. Title        titles for output from ":set all", ":autocmd" etc.
  3559.                             *hl-Visual*
  3560. Visual        Visual mode selection
  3561.                             *hl-VisualNOS*
  3562. VisualNOS    Visual mode selection when vim is "Not Owning the Selection".
  3563.         Only X11 Gui's |gui-x11| and |xterm-clipboard| supports this.
  3564.                             *hl-WarningMsg*
  3565. WarningMsg    warning messages
  3566.                             *hl-WildMenu*
  3567. WildMenu    current match in 'wildmenu' completion
  3568.  
  3569.                         *hl-User1* *hl-User1..9*
  3570. The 'statusline' syntax allows the use of 9 different highlights in the
  3571. statusline and ruler (via 'rulerformat'). The names are User1 to User9.
  3572.  
  3573. For the GUI you can use these groups to set the colors for the menu,
  3574. scrollbars and tooltips.  They don't have defaults.  This doesn't work for the
  3575. Win32 GUI.  Only three highlight arguments have any effect here: font, guibg,
  3576. and guifg.
  3577.  
  3578.                             *hl-Menu*
  3579. Menu        Current font, background and foreground colors of the menus.
  3580.         Also used for the toolbar.
  3581.         Applicable highlight arguments: font, guibg, guifg.
  3582.  
  3583.         NOTE: For Motif and Athena the font argument actually
  3584.         specifies a fontset at all times, no matter if 'guifontset' is
  3585.         empty, and as such it is tied to the current |:language| when
  3586.         set.
  3587.  
  3588.                             *hl-Scrollbar*
  3589. Scrollbar    Current background and foreground of the main window's
  3590.         scrollbars.
  3591.         Applicable highlight arguments: guibg, guifg.
  3592.  
  3593.                             *hl-Tooltip*
  3594. Tooltip        Current font, background and foreground of the tooltips.
  3595.         Applicable highlight arguments: font, guibg, guifg.
  3596.  
  3597.         NOTE: For Motif and Athena the font argument actually
  3598.         specifies a fontset at all times, no matter if 'guifontset' is
  3599.         empty, and as such it is tied to the current |:language| when
  3600.         set.
  3601.  
  3602. ==============================================================================
  3603. 13. Linking groups        *:hi-link* *:highlight-link* *E412* *E413*
  3604.  
  3605. When you want to use the same highlighting for several syntax groups, you
  3606. can do this more easily by linking the groups into one common highlight
  3607. group, and give the color attributes only for that group.
  3608.  
  3609. To set a link:
  3610.  
  3611.     :hi[ghlight][!] [default] link {from-group} {to-group}
  3612.  
  3613. To remove a link:
  3614.  
  3615.     :hi[ghlight][!] [default] link {from-group} NONE
  3616.  
  3617. Notes:                            *E414*
  3618. - If the {from-group} and/or {to-group} doesn't exist, it is created.  You
  3619.   don't get an error message for a non-existing group.
  3620. - As soon as you use a ":highlight" command for a linked group, the link is
  3621.   removed.
  3622. - If there are already highlight settings for the {from-group}, the link is
  3623.   not made, unless the '!' is given.  For a ":highlight link" command in a
  3624.   sourced file, you don't get an error message.  This can be used to skip
  3625.   links for groups that already have settings.
  3626.  
  3627.                     *:hi-default* *:highlight-default*
  3628. The [default] argument is used for setting the default highlighting for a
  3629. group.  If highlighting has already been specified for the group the command
  3630. will be ignored.  Also when there is an existing link.
  3631.  
  3632. Using [default] is especially useful to overrule the highlighting of a
  3633. specific syntax file.  For example, the C syntax file contains: >
  3634.     :highlight default link cComment Comment
  3635. If you like Question highlighting for C comments, put this in your vimrc file: >
  3636.     :highlight link cComment Question
  3637. Without the "default" in the C syntax file, the highlighting would be
  3638. overruled when the syntax file is loaded.
  3639.  
  3640. ==============================================================================
  3641. 14. Cleaning up                        *:syn-clear* *E391*
  3642.  
  3643. If you want to clear the syntax stuff for the current buffer, you can use this
  3644. command: >
  3645.   :syntax clear
  3646.  
  3647. This command should be used when you want to switch off syntax highlighting,
  3648. or when you want to switch to using another syntax.  It's normally not needed
  3649. in a syntax file itself, because syntax is cleared by the autocommands that
  3650. load the syntax file.
  3651. The command also deletes the "b:current_syntax" variable, since no syntax is
  3652. loaded after this command.
  3653.  
  3654. If you want to disable syntax highlighting for all buffers, you need to remove
  3655. the autocommands that load the syntax files: >
  3656.   :syntax off
  3657.  
  3658. What this command actually does, is executing the command >
  3659.   :source $VIMRUNTIME/syntax/nosyntax.vim
  3660. See the "nosyntax.vim" file for details.  Note that for this to work
  3661. $VIMRUNTIME must be valid.  See |$VIMRUNTIME|.
  3662.  
  3663. To clean up specific syntax groups for the current buffer: >
  3664.   :syntax clear {group-name} ..
  3665. This removes all patterns and keywords for {group-name}.
  3666.  
  3667. To clean up specific syntax group lists for the current buffer: >
  3668.   :syntax clear @{grouplist-name} ..
  3669. This sets {grouplist-name}'s contents to an empty list.
  3670.  
  3671.                         *:syntax-reset* *:syn-reset*
  3672. If you have changed the colors and messed them up, use this command to get the
  3673. defaults back: >
  3674.  
  3675.   :syntax reset
  3676.  
  3677. This doesn't change the colors for the 'highlight' option.
  3678.  
  3679. Note that the syntax colors that you set in your vimrc file will also be reset
  3680. back to their Vim default.
  3681. Note that if you are using a color scheme, the colors defined by the color
  3682. scheme for syntax highlighting will be lost.
  3683.  
  3684. What this actually does is: >
  3685.  
  3686.     let g:syntax_cmd = "reset"
  3687.     runtime! syntax/syncolor.vim
  3688.  
  3689. Note that this uses the 'runtimepath' option.
  3690.  
  3691.                             *syncolor*
  3692. If you want to use different colors for syntax highlighting, you can add a Vim
  3693. script file to set these colors.  Put this file in a directory in
  3694. 'runtimepath' which comes after $VIMRUNTIME, so that your settings overrule
  3695. the default colors.  This way these colors will be used after the ":syntax
  3696. reset" command.
  3697.  
  3698. For Unix you can use the file ~/.vim/after/syntax/syncolor.vim.  Example: >
  3699.  
  3700.     if &background == "light"
  3701.       highlight comment ctermfg=darkgreen guifg=darkgreen
  3702.     else
  3703.       highlight comment ctermfg=green guifg=green
  3704.     endif
  3705.  
  3706. Note that when a color scheme is used, there might be some confusion whether
  3707. your defined colors are to be used or the colors from the scheme.  This
  3708. depends on the color scheme file.  See |:colorscheme|.
  3709.  
  3710.                             *syntax_cmd*
  3711. The "syntax_cmd" variable is set to one of these values when the
  3712. syntax/syncolor.vim files are loaded:
  3713.    "on"        ":syntax on" command.  Highlight colors are overruled but
  3714.         links are kept
  3715.    "enable"    ":syntax enable" command.  Only define colors for groups that
  3716.         don't have highlighting yet.  Use ":syntax default".
  3717.    "reset"    ":syntax reset" command or loading a color scheme.  Define all
  3718.         the colors.
  3719.    "skip"    Dont' define colors.  Used to skip the default settings when a
  3720.         syncolor.vim file earlier in 'runtimepath' has already set
  3721.         them.
  3722.  
  3723. ==============================================================================
  3724. 15. Highlighting tags                    *tag-highlight*
  3725.  
  3726. If you want to highlight all the tags in your file, you can use the following
  3727. mappings.
  3728.  
  3729.     <F11>    -- Generate tags.vim file, and highlight tags.
  3730.     <F12>    -- Just highlight tags based on existing tags.vim file.
  3731. >
  3732.   :map <F11>  :sp tags<CR>:%s/^\([^    :]*:\)\=\([^    ]*\).*/syntax keyword Tag \2/<CR>:wq! tags.vim<CR>/^<CR><F12>
  3733.   :map <F12>  :so tags.vim<CR>
  3734.  
  3735. WARNING: The longer the tags file, the slower this will be, and the more
  3736. memory Vim will consume.
  3737.  
  3738. Only highlighting typedefs, unions and structs can be done too.  For this you
  3739. must use Exuberant ctags (found at http://ctags.sf.net).
  3740.  
  3741. Put these lines in your Makefile:
  3742.  
  3743. # Make a highlight file for types.  Requires Exuberant ctags and awk
  3744. types: types.vim
  3745. types.vim: *.[ch]
  3746.     ctags -i=gstuS -o- *.[ch] |\
  3747.         awk 'BEGIN{printf("syntax keyword Type\t")}\
  3748.             {printf("%s ", $$1)}END{print ""}' > $@
  3749.  
  3750. And put these lines in your .vimrc: >
  3751.  
  3752.    " load the types.vim highlighting file, if it exists
  3753.    autocmd BufRead,BufNewFile *.[ch] let fname = expand('<afile>:p:h') . '/types.vim'
  3754.    autocmd BufRead,BufNewFile *.[ch] if filereadable(fname)
  3755.    autocmd BufRead,BufNewFile *.[ch]   exe 'so ' . fname
  3756.    autocmd BufRead,BufNewFile *.[ch] endif
  3757.  
  3758. ==============================================================================
  3759. 16. Color xterms                *xterm-color* *color-xterm*
  3760.  
  3761. Most color xterms have only eight colors.  If you don't get colors with the
  3762. default setup, it should work with these lines in your .vimrc: >
  3763.    :if &term =~ "xterm"
  3764.    :  if has("terminfo")
  3765.    :    set t_Co=8
  3766.    :    set t_Sf=<Esc>[3%p1%dm
  3767.    :    set t_Sb=<Esc>[4%p1%dm
  3768.    :  else
  3769.    :    set t_Co=8
  3770.    :    set t_Sf=<Esc>[3%dm
  3771.    :    set t_Sb=<Esc>[4%dm
  3772.    :  endif
  3773.    :endif
  3774. <    [<Esc> is a real escape, type CTRL-V <Esc>]
  3775.  
  3776. You might want to change the first "if" to match the name of your terminal,
  3777. e.g. "dtterm" instead of "xterm".
  3778.  
  3779. Note: Do these settings BEFORE doing ":syntax on".  Otherwise the colors may
  3780. be wrong.
  3781.                             *xiterm* *rxvt*
  3782. The above settings have been mentioned to work for xiterm and rxvt too.
  3783. But for using 16 colors in an rxvt these should work with terminfo: >
  3784.     :set t_AB=<Esc>[%?%p1%{8}%<%t25;%p1%{40}%+%e5;%p1%{32}%+%;%dm
  3785.     :set t_AF=<Esc>[%?%p1%{8}%<%t22;%p1%{30}%+%e1;%p1%{22}%+%;%dm
  3786. <
  3787.                             *colortest.vim*
  3788. To test your color setup, a file has been included in the Vim distribution.
  3789. To use it, execute these commands: >
  3790.    :e $VIMRUNTIME/syntax/colortest.vim
  3791.    :so %
  3792.  
  3793. Some versions of xterm (and other terminals, like the linux console) can
  3794. output lighter foreground colors, even though the number of colors is defined
  3795. at 8.  Therefore Vim sets the "cterm=bold" attribute for light foreground
  3796. colors, when 't_Co' is 8.
  3797.  
  3798.                             *xfree-xterm*
  3799. To get 16 colors or more, get the newest xterm version (which should be
  3800. included with Xfree86 3.3 and later).  You can also find the latest version
  3801. at: >
  3802.     http://www.clark.net/pub/dickey/xterm
  3803. Here is a good way to configure it.  This uses 88 colors and enables the
  3804. termcap-query feature, which allows Vim to ask the xterm how many colors it
  3805. supports. >
  3806.     ./configure --disable-bold-color --enable-88-color --enable-tcap-query
  3807. If you only get 8 colors, check the xterm compilation settings.
  3808. (Also see |UTF8-xterm| for using this xterm with UTF-8 character encoding).
  3809.  
  3810. This xterm should work with these lines in your .vimrc (for 16 colors): >
  3811.    :if has("terminfo")
  3812.    :  set t_Co=16
  3813.    :  set t_AB=<Esc>[%?%p1%{8}%<%t%p1%{40}%+%e%p1%{92}%+%;%dm
  3814.    :  set t_AF=<Esc>[%?%p1%{8}%<%t%p1%{30}%+%e%p1%{82}%+%;%dm
  3815.    :else
  3816.    :  set t_Co=16
  3817.    :  set t_Sf=<Esc>[3%dm
  3818.    :  set t_Sb=<Esc>[4%dm
  3819.    :endif
  3820. <    [<Esc> is a real escape, type CTRL-V <Esc>]
  3821.  
  3822. Without |+terminfo|, Vim will recognize these settings, and automatically
  3823. translate cterm colors of 8 and above to "<Esc>[9%dm" and "<Esc>[10%dm".
  3824. Colors above 16 are also translated automatically.
  3825.  
  3826. For 256 colors this has been reported to work: >
  3827.  
  3828.    :set t_AB=<Esc>[48;5;%dm
  3829.    :set t_AF=<Esc>[38;5;%dm
  3830.  
  3831. Or just set the TERM environment variable to "xterm-color" or "xterm-16color"
  3832. and try if that works.
  3833.  
  3834. You probably want to use these X resources (in your ~/.Xdefaults file):
  3835.     XTerm*color0:            #000000
  3836.     XTerm*color1:            #c00000
  3837.     XTerm*color2:            #008000
  3838.     XTerm*color3:            #808000
  3839.     XTerm*color4:            #0000c0
  3840.     XTerm*color5:            #c000c0
  3841.     XTerm*color6:            #008080
  3842.     XTerm*color7:            #c0c0c0
  3843.     XTerm*color8:            #808080
  3844.     XTerm*color9:            #ff6060
  3845.     XTerm*color10:            #00ff00
  3846.     XTerm*color11:            #ffff00
  3847.     XTerm*color12:            #8080ff
  3848.     XTerm*color13:            #ff40ff
  3849.     XTerm*color14:            #00ffff
  3850.     XTerm*color15:            #ffffff
  3851.     Xterm*cursorColor:        Black
  3852.  
  3853. [Note: The cursorColor is required to work around a bug, which changes the
  3854. cursor color to the color of the last drawn text.  This has been fixed by a
  3855. newer version of xterm, but not everybody is it using yet.]
  3856.  
  3857. To get these right away, reload the .Xdefaults file to the X Option database
  3858. Manager (you only need to do this when you just changed the .Xdefaults file): >
  3859.   xrdb -merge ~/.Xdefaults
  3860. <
  3861.                     *xterm-blink* *xterm-blinking-cursor*
  3862. To make the cursor blink in an xterm, see tools/blink.c.  Or use Thomas
  3863. Dickey's xterm above patchlevel 107 (see above for where to get it), with
  3864. these resources:
  3865.     XTerm*cursorBlink:    on
  3866.     XTerm*cursorOnTime:    400
  3867.     XTerm*cursorOffTime:    250
  3868.     XTerm*cursorColor:    White
  3869.  
  3870.                             *hpterm-color*
  3871. These settings work (more or less) for a hpterm, which only supports 8
  3872. foreground colors: >
  3873.    :if has("terminfo")
  3874.    :  set t_Co=8
  3875.    :  set t_Sf=<Esc>[&v%p1%dS
  3876.    :  set t_Sb=<Esc>[&v7S
  3877.    :else
  3878.    :  set t_Co=8
  3879.    :  set t_Sf=<Esc>[&v%dS
  3880.    :  set t_Sb=<Esc>[&v7S
  3881.    :endif
  3882. <    [<Esc> is a real escape, type CTRL-V <Esc>]
  3883.  
  3884.                         *Eterm* *enlightened-terminal*
  3885. These settings have been reported to work for the Enlightened terminal
  3886. emulator, or Eterm.  They might work for all xterm-like terminals that use the
  3887. bold attribute to get bright colors.  Add an ":if" like above when needed. >
  3888.        :set t_Co=16
  3889.        :set t_AF=^[[%?%p1%{8}%<%t3%p1%d%e%p1%{22}%+%d;1%;m
  3890.        :set t_AB=^[[%?%p1%{8}%<%t4%p1%d%e%p1%{32}%+%d;1%;m
  3891. <
  3892.                         *TTpro-telnet*
  3893. These settings should work for TTpro telnet.  Tera Term Pro is a freeware /
  3894. open-source program for MS-Windows. >
  3895.     set t_Co=16
  3896.     set t_AB=^[[%?%p1%{8}%<%t%p1%{40}%+%e%p1%{32}%+5;%;%dm
  3897.     set t_AF=^[[%?%p1%{8}%<%t%p1%{30}%+%e%p1%{22}%+1;%;%dm
  3898. Also make sure TTpro's Setup / Window / Full Color is enabled, and make sure
  3899. that Setup / Font / Enable Bold is NOT enabled.
  3900. (info provided by John Love-Jensen <eljay@Adobe.COM>)
  3901.  
  3902.  vim:tw=78:sw=4:ts=8:ft=help:norl:
  3903.