blob: c34b10c2cffe88a65132b5e2457eb902e8c8242a [file] [log] [blame]
Bram Moolenaar74cbdf02010-08-04 23:03:17 +02001*syntax.txt* For Vim version 7.3e. Last change: 2010 Aug 04
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Syntax highlighting *syntax* *syntax-highlighting* *coloring*
8
9Syntax highlighting enables Vim to show parts of the text in another font or
10color. Those parts can be specific keywords or text matching a pattern. Vim
11doesn't parse the whole file (to keep it fast), so the highlighting has its
12limitations. Lexical highlighting might be a better name, but since everybody
13calls it syntax highlighting we'll stick with that.
14
15Vim supports syntax highlighting on all terminals. But since most ordinary
16terminals have very limited highlighting possibilities, it works best in the
17GUI version, gvim.
18
19In the User Manual:
20|usr_06.txt| introduces syntax highlighting.
21|usr_44.txt| introduces writing a syntax file.
22
231. Quick start |:syn-qstart|
242. Syntax files |:syn-files|
253. Syntax loading procedure |syntax-loading|
264. Syntax file remarks |:syn-file-remarks|
275. Defining a syntax |:syn-define|
286. :syntax arguments |:syn-arguments|
297. Syntax patterns |:syn-pattern|
308. Syntax clusters |:syn-cluster|
319. Including syntax files |:syn-include|
3210. Synchronizing |:syn-sync|
3311. Listing syntax items |:syntax|
3412. Highlight command |:highlight|
3513. Linking groups |:highlight-link|
3614. Cleaning up |:syn-clear|
3715. Highlighting tags |tag-highlight|
Bram Moolenaar860cae12010-06-05 23:22:07 +02003816. Window-local syntax |:ownsyntax|
3917. Color xterms |xterm-color|
Bram Moolenaar071d4272004-06-13 20:20:40 +000040
41{Vi does not have any of these commands}
42
43Syntax highlighting is not available when the |+syntax| feature has been
44disabled at compile time.
45
46==============================================================================
471. Quick start *:syn-qstart*
48
49 *:syn-enable* *:syntax-enable*
50This command switches on syntax highlighting: >
51
52 :syntax enable
53
54What this command actually does is to execute the command >
55 :source $VIMRUNTIME/syntax/syntax.vim
56
57If the VIM environment variable is not set, Vim will try to find
58the path in another way (see |$VIMRUNTIME|). Usually this works just
59fine. If it doesn't, try setting the VIM environment variable to the
60directory where the Vim stuff is located. For example, if your syntax files
61are in the "/usr/vim/vim50/syntax" directory, set $VIMRUNTIME to
62"/usr/vim/vim50". You must do this in the shell, before starting Vim.
63
64 *:syn-on* *:syntax-on*
65The ":syntax enable" command will keep your current color settings. This
66allows using ":highlight" commands to set your preferred colors before or
67after using this command. If you want Vim to overrule your settings with the
68defaults, use: >
69 :syntax on
70<
71 *:hi-normal* *:highlight-normal*
72If you are running in the GUI, you can get white text on a black background
73with: >
74 :highlight Normal guibg=Black guifg=White
75For a color terminal see |:hi-normal-cterm|.
76For setting up your own colors syntax highlighting see |syncolor|.
77
78NOTE: The syntax files on MS-DOS and Windows have lines that end in <CR><NL>.
79The files for Unix end in <NL>. This means you should use the right type of
80file for your system. Although on MS-DOS and Windows the right format is
81automatically selected if the 'fileformats' option is not empty.
82
83NOTE: When using reverse video ("gvim -fg white -bg black"), the default value
84of 'background' will not be set until the GUI window is opened, which is after
Bram Moolenaar910f66f2006-04-05 20:41:53 +000085reading the |gvimrc|. This will cause the wrong default highlighting to be
Bram Moolenaar071d4272004-06-13 20:20:40 +000086used. To set the default value of 'background' before switching on
Bram Moolenaar910f66f2006-04-05 20:41:53 +000087highlighting, include the ":gui" command in the |gvimrc|: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000088
89 :gui " open window and set default for 'background'
90 :syntax on " start highlighting, use 'background' to set colors
91
Bram Moolenaar910f66f2006-04-05 20:41:53 +000092NOTE: Using ":gui" in the |gvimrc| means that "gvim -f" won't start in the
Bram Moolenaar071d4272004-06-13 20:20:40 +000093foreground! Use ":gui -f" then.
94
95
96You can toggle the syntax on/off with this command >
97 :if exists("syntax_on") | syntax off | else | syntax enable | endif
98
99To put this into a mapping, you can use: >
100 :map <F7> :if exists("syntax_on") <Bar>
101 \ syntax off <Bar>
102 \ else <Bar>
103 \ syntax enable <Bar>
104 \ endif <CR>
105[using the |<>| notation, type this literally]
106
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000107Details:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108The ":syntax" commands are implemented by sourcing a file. To see exactly how
109this works, look in the file:
110 command file ~
111 :syntax enable $VIMRUNTIME/syntax/syntax.vim
112 :syntax on $VIMRUNTIME/syntax/syntax.vim
113 :syntax manual $VIMRUNTIME/syntax/manual.vim
114 :syntax off $VIMRUNTIME/syntax/nosyntax.vim
115Also see |syntax-loading|.
116
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100117NOTE: If displaying long lines is slow and switching off syntax highlighting
118makes it fast, consider setting the 'synmaxcol' option to a lower value.
119
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120==============================================================================
1212. Syntax files *:syn-files*
122
123The syntax and highlighting commands for one language are normally stored in
124a syntax file. The name convention is: "{name}.vim". Where {name} is the
125name of the language, or an abbreviation (to fit the name in 8.3 characters,
126a requirement in case the file is used on a DOS filesystem).
127Examples:
128 c.vim perl.vim java.vim html.vim
129 cpp.vim sh.vim csh.vim
130
131The syntax file can contain any Ex commands, just like a vimrc file. But
132the idea is that only commands for a specific language are included. When a
133language is a superset of another language, it may include the other one,
134for example, the cpp.vim file could include the c.vim file: >
135 :so $VIMRUNTIME/syntax/c.vim
136
137The .vim files are normally loaded with an autocommand. For example: >
138 :au Syntax c runtime! syntax/c.vim
139 :au Syntax cpp runtime! syntax/cpp.vim
140These commands are normally in the file $VIMRUNTIME/syntax/synload.vim.
141
142
143MAKING YOUR OWN SYNTAX FILES *mysyntaxfile*
144
145When you create your own syntax files, and you want to have Vim use these
146automatically with ":syntax enable", do this:
147
1481. Create your user runtime directory. You would normally use the first item
149 of the 'runtimepath' option. Example for Unix: >
150 mkdir ~/.vim
151
1522. Create a directory in there called "syntax". For Unix: >
153 mkdir ~/.vim/syntax
154
1553. Write the Vim syntax file. Or download one from the internet. Then write
156 it in your syntax directory. For example, for the "mine" syntax: >
157 :w ~/.vim/syntax/mine.vim
158
159Now you can start using your syntax file manually: >
160 :set syntax=mine
161You don't have to exit Vim to use this.
162
163If you also want Vim to detect the type of file, see |new-filetype|.
164
165If you are setting up a system with many users and you don't want each user
166to add the same syntax file, you can use another directory from 'runtimepath'.
167
168
169ADDING TO AN EXISTING SYNTAX FILE *mysyntaxfile-add*
170
171If you are mostly satisfied with an existing syntax file, but would like to
172add a few items or change the highlighting, follow these steps:
173
1741. Create your user directory from 'runtimepath', see above.
175
1762. Create a directory in there called "after/syntax". For Unix: >
177 mkdir ~/.vim/after
178 mkdir ~/.vim/after/syntax
179
1803. Write a Vim script that contains the commands you want to use. For
181 example, to change the colors for the C syntax: >
182 highlight cComment ctermfg=Green guifg=Green
183
1844. Write that file in the "after/syntax" directory. Use the name of the
185 syntax, with ".vim" added. For our C syntax: >
186 :w ~/.vim/after/syntax/c.vim
187
188That's it. The next time you edit a C file the Comment color will be
189different. You don't even have to restart Vim.
190
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000191If you have multiple files, you can use the filetype as the directory name.
192All the "*.vim" files in this directory will be used, for example:
193 ~/.vim/after/syntax/c/one.vim
194 ~/.vim/after/syntax/c/two.vim
195
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196
197REPLACING AN EXISTING SYNTAX FILE *mysyntaxfile-replace*
198
199If you don't like a distributed syntax file, or you have downloaded a new
200version, follow the same steps as for |mysyntaxfile| above. Just make sure
201that you write the syntax file in a directory that is early in 'runtimepath'.
202Vim will only load the first syntax file found.
203
204
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100205NAMING CONVENTIONS *group-name* *{group-name}* *E669* *W18*
206
207A syntax group name is to be used for syntax items that match the same kind of
208thing. These are then linked to a highlight group that specifies the color.
209A syntax group name doesn't specify any color or attributes itself.
210
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211The name for a highlight or syntax group must consist of ASCII letters, digits
212and the underscore. As a regexp: "[a-zA-Z0-9_]*"
213
214To be able to allow each user to pick his favorite set of colors, there must
215be preferred names for highlight groups that are common for many languages.
216These are the suggested group names (if syntax highlighting works properly
217you can see the actual color, except for "Ignore"):
218
219 *Comment any comment
220
221 *Constant any constant
222 String a string constant: "this is a string"
223 Character a character constant: 'c', '\n'
224 Number a number constant: 234, 0xff
225 Boolean a boolean constant: TRUE, false
226 Float a floating point constant: 2.3e10
227
228 *Identifier any variable name
229 Function function name (also: methods for classes)
230
231 *Statement any statement
232 Conditional if, then, else, endif, switch, etc.
233 Repeat for, do, while, etc.
234 Label case, default, etc.
235 Operator "sizeof", "+", "*", etc.
236 Keyword any other keyword
237 Exception try, catch, throw
238
239 *PreProc generic Preprocessor
240 Include preprocessor #include
241 Define preprocessor #define
242 Macro same as Define
243 PreCondit preprocessor #if, #else, #endif, etc.
244
245 *Type int, long, char, etc.
246 StorageClass static, register, volatile, etc.
247 Structure struct, union, enum, etc.
248 Typedef A typedef
249
250 *Special any special symbol
251 SpecialChar special character in a constant
252 Tag you can use CTRL-] on this
253 Delimiter character that needs attention
254 SpecialComment special things inside a comment
255 Debug debugging statements
256
257 *Underlined text that stands out, HTML links
258
Bram Moolenaar4f99eae2010-07-24 15:56:43 +0200259 *Ignore left blank, hidden |hl-Ignore|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260
261 *Error any erroneous construct
262
263 *Todo anything that needs extra attention; mostly the
264 keywords TODO FIXME and XXX
265
266The names marked with * are the preferred groups; the others are minor groups.
267For the preferred groups, the "syntax.vim" file contains default highlighting.
268The minor groups are linked to the preferred groups, so they get the same
269highlighting. You can override these defaults by using ":highlight" commands
270after sourcing the "syntax.vim" file.
271
272Note that highlight group names are not case sensitive. "String" and "string"
273can be used for the same group.
274
275The following names are reserved and cannot be used as a group name:
276 NONE ALL ALLBUT contains contained
277
Bram Moolenaar4f99eae2010-07-24 15:56:43 +0200278 *hl-Ignore*
279When using the Ignore group, you may also consider using the conceal
280mechanism. See |conceal|.
281
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282==============================================================================
2833. Syntax loading procedure *syntax-loading*
284
285This explains the details that happen when the command ":syntax enable" is
286issued. When Vim initializes itself, it finds out where the runtime files are
287located. This is used here as the variable |$VIMRUNTIME|.
288
289":syntax enable" and ":syntax on" do the following:
290
291 Source $VIMRUNTIME/syntax/syntax.vim
292 |
293 +- Clear out any old syntax by sourcing $VIMRUNTIME/syntax/nosyntax.vim
294 |
295 +- Source first syntax/synload.vim in 'runtimepath'
296 | |
297 | +- Setup the colors for syntax highlighting. If a color scheme is
298 | | defined it is loaded again with ":colors {name}". Otherwise
299 | | ":runtime! syntax/syncolor.vim" is used. ":syntax on" overrules
300 | | existing colors, ":syntax enable" only sets groups that weren't
301 | | set yet.
302 | |
303 | +- Set up syntax autocmds to load the appropriate syntax file when
304 | | the 'syntax' option is set. *synload-1*
305 | |
306 | +- Source the user's optional file, from the |mysyntaxfile| variable.
307 | This is for backwards compatibility with Vim 5.x only. *synload-2*
308 |
309 +- Do ":filetype on", which does ":runtime! filetype.vim". It loads any
310 | filetype.vim files found. It should always Source
311 | $VIMRUNTIME/filetype.vim, which does the following.
312 | |
313 | +- Install autocmds based on suffix to set the 'filetype' option
314 | | This is where the connection between file name and file type is
315 | | made for known file types. *synload-3*
316 | |
317 | +- Source the user's optional file, from the *myfiletypefile*
318 | | variable. This is for backwards compatibility with Vim 5.x only.
319 | | *synload-4*
320 | |
321 | +- Install one autocommand which sources scripts.vim when no file
322 | | type was detected yet. *synload-5*
323 | |
324 | +- Source $VIMRUNTIME/menu.vim, to setup the Syntax menu. |menu.vim|
325 |
326 +- Install a FileType autocommand to set the 'syntax' option when a file
327 | type has been detected. *synload-6*
328 |
329 +- Execute syntax autocommands to start syntax highlighting for each
330 already loaded buffer.
331
332
333Upon loading a file, Vim finds the relevant syntax file as follows:
334
335 Loading the file triggers the BufReadPost autocommands.
336 |
337 +- If there is a match with one of the autocommands from |synload-3|
338 | (known file types) or |synload-4| (user's file types), the 'filetype'
339 | option is set to the file type.
340 |
341 +- The autocommand at |synload-5| is triggered. If the file type was not
342 | found yet, then scripts.vim is searched for in 'runtimepath'. This
343 | should always load $VIMRUNTIME/scripts.vim, which does the following.
344 | |
345 | +- Source the user's optional file, from the *myscriptsfile*
346 | | variable. This is for backwards compatibility with Vim 5.x only.
347 | |
348 | +- If the file type is still unknown, check the contents of the file,
349 | again with checks like "getline(1) =~ pattern" as to whether the
350 | file type can be recognized, and set 'filetype'.
351 |
352 +- When the file type was determined and 'filetype' was set, this
353 | triggers the FileType autocommand |synload-6| above. It sets
354 | 'syntax' to the determined file type.
355 |
356 +- When the 'syntax' option was set above, this triggers an autocommand
357 | from |synload-1| (and |synload-2|). This find the main syntax file in
358 | 'runtimepath', with this command:
359 | runtime! syntax/<name>.vim
360 |
361 +- Any other user installed FileType or Syntax autocommands are
362 triggered. This can be used to change the highlighting for a specific
363 syntax.
364
365==============================================================================
3664. Syntax file remarks *:syn-file-remarks*
367
368 *b:current_syntax-variable*
369Vim stores the name of the syntax that has been loaded in the
370"b:current_syntax" variable. You can use this if you want to load other
371settings, depending on which syntax is active. Example: >
372 :au BufReadPost * if b:current_syntax == "csh"
373 :au BufReadPost * do-some-things
374 :au BufReadPost * endif
375
376
3772HTML *2html.vim* *convert-to-HTML*
378
379This is not a syntax file itself, but a script that converts the current
380window into HTML. Vim opens a new window in which it builds the HTML file.
381
382You are not supposed to set the 'filetype' or 'syntax' option to "2html"!
383Source the script to convert the current file: >
384
385 :runtime! syntax/2html.vim
386<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 *:TOhtml*
388Or use the ":TOhtml" user command. It is defined in a standard plugin.
389":TOhtml" also works with a range and in a Visual area: >
390
391 :10,40TOhtml
392
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200393Warning: This is slow! The script must process every character of every line.
394Because it is so slow, by default a progress bar is displayed in the
395statusline for each step that usually takes a long time. If you don't like
396seeing this progress bar, you can disable it and get a very minor speed
397improvement with: >
398
399 let g:html_no_progress = 1
400
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200401":TOhtml" has another special feature: if the window is in diff mode, it will
402generate HTML that shows all the related windows. This can be disabled by
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200403setting the g:html_diff_one_file variable: >
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200404
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200405 let g:html_diff_one_file = 1
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200406
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100407After you save the resulting file, you can view it with any browser. The
408colors should be exactly the same as you see them in Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200410To restrict the conversion to a range of lines, use a range with the |:TOhtml|
411command, or set "g:html_start_line" and "g:html_end_line" to the first and
412last line to be converted. Example, using the last set Visual area: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200414 :let g:html_start_line = line("'<")
415 :let g:html_end_line = line("'>")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416
417The lines are numbered according to 'number' option and the Number
418highlighting. You can force lines to be numbered in the HTML output by
419setting "html_number_lines" to non-zero value: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200420 :let g:html_number_lines = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421Force to omit the line numbers by using a zero value: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200422 :let g:html_number_lines = 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423Go back to the default to use 'number' by deleting the variable: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200424 :unlet g:html_number_lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200426By default, valid HTML 4.01 using cascading style sheets (CSS1) is generated.
427If you need to generate markup for really old browsers or some other user
428agent that lacks basic CSS support, use: >
429 :let g:html_use_css = 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200431Concealed text is removed from the HTML and replaced with the appropriate
Bram Moolenaarfa0ff9a2010-07-25 16:05:19 +0200432character from |:syn-cchar| or 'listchars' depending on the current value of
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200433'conceallevel'. If you always want to display all text in your document,
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200434either set 'conceallevel' to zero before invoking 2html, or use: >
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200435 :let g:html_ignore_conceal = 1
436
437Similarly, closed folds are put in the HTML as they are displayed. If you
438don't want this, use the |zR| command before invoking 2html, or use: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200439 :let g:html_ignore_folding = 1
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100440
441You may want to generate HTML that includes all the data within the folds, and
442allow the user to view the folded data similar to how they would in Vim. To
443generate this dynamic fold information, use: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200444 :let g:html_dynamic_folds = 1
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100445
446Using html_dynamic_folds will imply html_use_css, because it would be far too
447difficult to do it for old browsers. However, html_ignore_folding overrides
448html_dynamic_folds.
449
450Using html_dynamic_folds will default to generating a foldcolumn in the html
451similar to Vim's foldcolumn, that will use javascript to open and close the
452folds in the HTML document. The width of this foldcolumn starts at the current
453setting of |'foldcolumn'| but grows to fit the greatest foldlevel in your
454document. If you do not want to show a foldcolumn at all, use: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200455 :let g:html_no_foldcolumn = 1
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100456
457Using this option, there will be no foldcolumn available to open the folds in
458the HTML. For this reason, another option is provided: html_hover_unfold.
459Enabling this option will use CSS 2.0 to allow a user to open a fold by
460hovering the mouse pointer over it. Note that old browsers (notably Internet
461Explorer 6) will not support this feature. Browser-specific markup for IE6 is
462included to fall back to the normal CSS1 code so that the folds show up
463correctly for this browser, but they will not be openable without a
464foldcolumn. Note that using html_hover_unfold will allow modern browsers with
465disabled javascript to view closed folds. To use this option, use: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200466 :let g:html_hover_unfold = 1
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100467
468Setting html_no_foldcolumn with html_dynamic_folds will automatically set
469html_hover_unfold, because otherwise the folds wouldn't be dynamic.
470
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471By default "<pre>" and "</pre>" is used around the text. This makes it show
472up as you see it in Vim, but without wrapping. If you prefer wrapping, at the
473risk of making some things look a bit different, use: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200474 :let g:html_no_pre = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475This will use <br> at the end of each line and use "&nbsp;" for repeated
476spaces.
477
478The current value of 'encoding' is used to specify the charset of the HTML
479file. This only works for those values of 'encoding' that have an equivalent
480HTML charset name. To overrule this set g:html_use_encoding to the name of
481the charset to be used: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200482 :let g:html_use_encoding = "foobar"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483To omit the line that specifies the charset, set g:html_use_encoding to an
484empty string: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200485 :let g:html_use_encoding = ""
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486To go back to the automatic mechanism, delete the g:html_use_encoding
487variable: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200488 :unlet g:html_use_encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489<
Bram Moolenaar47136d72004-10-12 20:02:24 +0000490For diff mode a sequence of more than 3 filler lines is displayed as three
491lines with the middle line mentioning the total number of inserted lines. If
492you prefer to see all the inserted lines use: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200493 :let g:html_whole_filler = 1
Bram Moolenaar47136d72004-10-12 20:02:24 +0000494And to go back to displaying up to three lines again: >
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200495 :unlet g:html_whole_filler
Bram Moolenaar488c6512005-08-11 20:09:58 +0000496<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 *convert-to-XML* *convert-to-XHTML*
498An alternative is to have the script generate XHTML (XML compliant HTML). To
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200499do this set the "html_use_xhtml" variable: >
500 :let g:html_use_xhtml = 1
501
502Any of these options can be enabled or disabled by setting them explicitly to
503the desired value, or restored to their default by removing the variable using
504|:unlet|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505
506Remarks:
507- This only works in a version with GUI support. If the GUI is not actually
508 running (possible for X11) it still works, but not very well (the colors
509 may be wrong).
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200510- Some truly ancient browsers may not show the background colors.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511- From most browsers you can also print the file (in color)!
512
513Here is an example how to run the script over all .c and .h files from a
514Unix shell: >
515 for f in *.[ch]; do gvim -f +"syn on" +"run! syntax/2html.vim" +"wq" +"q" $f; done
516<
517
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000518ABEL *abel.vim* *ft-abel-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519
520ABEL highlighting provides some user-defined options. To enable them, assign
521any value to the respective variable. Example: >
522 :let abel_obsolete_ok=1
523To disable them use ":unlet". Example: >
524 :unlet abel_obsolete_ok
525
526Variable Highlight ~
527abel_obsolete_ok obsolete keywords are statements, not errors
528abel_cpp_comments_illegal do not interpret '//' as inline comment leader
529
530
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000531ADA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000533See |ft-ada-syntax|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534
535
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000536ANT *ant.vim* *ft-ant-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537
538The ant syntax file provides syntax highlighting for javascript and python
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000539by default. Syntax highlighting for other script languages can be installed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540by the function AntSyntaxScript(), which takes the tag name as first argument
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000541and the script syntax file name as second argument. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542
543 :call AntSyntaxScript('perl', 'perl.vim')
544
545will install syntax perl highlighting for the following ant code >
546
547 <script language = 'perl'><![CDATA[
548 # everything inside is highlighted as perl
549 ]]></script>
550
551See |mysyntaxfile-add| for installing script languages permanently.
552
553
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000554APACHE *apache.vim* *ft-apache-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555
556The apache syntax file provides syntax highlighting depending on Apache HTTP
557server version, by default for 1.3.x. Set "apache_version" to Apache version
558(as a string) to get highlighting for another version. Example: >
559
560 :let apache_version = "2.0"
561<
562
563 *asm.vim* *asmh8300.vim* *nasm.vim* *masm.vim* *asm68k*
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000564ASSEMBLY *ft-asm-syntax* *ft-asmh8300-syntax* *ft-nasm-syntax*
565 *ft-masm-syntax* *ft-asm68k-syntax* *fasm.vim*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566
567Files matching "*.i" could be Progress or Assembly. If the automatic detection
568doesn't work for you, or you don't edit Progress at all, use this in your
569startup vimrc: >
570 :let filetype_i = "asm"
571Replace "asm" with the type of assembly you use.
572
573There are many types of assembly languages that all use the same file name
574extensions. Therefore you will have to select the type yourself, or add a
575line in the assembly file that Vim will recognize. Currently these syntax
576files are included:
577 asm GNU assembly (the default)
578 asm68k Motorola 680x0 assembly
579 asmh8300 Hitachi H-8300 version of GNU assembly
580 ia64 Intel Itanium 64
581 fasm Flat assembly (http://flatassembler.net)
582 masm Microsoft assembly (probably works for any 80x86)
583 nasm Netwide assembly
584 tasm Turbo Assembly (with opcodes 80x86 up to Pentium, and
585 MMX)
586 pic PIC assembly (currently for PIC16F84)
587
588The most flexible is to add a line in your assembly file containing: >
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100589 asmsyntax=nasm
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590Replace "nasm" with the name of the real assembly syntax. This line must be
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100591one of the first five lines in the file. No non-white text must be
592immediately before or after this text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593
594The syntax type can always be overruled for a specific buffer by setting the
595b:asmsyntax variable: >
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000596 :let b:asmsyntax = "nasm"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597
598If b:asmsyntax is not set, either automatically or by hand, then the value of
599the global variable asmsyntax is used. This can be seen as a default assembly
600language: >
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000601 :let asmsyntax = "nasm"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602
603As a last resort, if nothing is defined, the "asm" syntax is used.
604
605
606Netwide assembler (nasm.vim) optional highlighting ~
607
608To enable a feature: >
609 :let {variable}=1|set syntax=nasm
610To disable a feature: >
611 :unlet {variable} |set syntax=nasm
612
613Variable Highlight ~
614nasm_loose_syntax unofficial parser allowed syntax not as Error
615 (parser dependent; not recommended)
616nasm_ctx_outside_macro contexts outside macro not as Error
617nasm_no_warn potentially risky syntax not as ToDo
618
619
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000620ASPPERL and ASPVBS *ft-aspperl-syntax* *ft-aspvbs-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621
622*.asp and *.asa files could be either Perl or Visual Basic script. Since it's
623hard to detect this you can set two global variables to tell Vim what you are
624using. For Perl script use: >
625 :let g:filetype_asa = "aspperl"
626 :let g:filetype_asp = "aspperl"
627For Visual Basic use: >
628 :let g:filetype_asa = "aspvbs"
629 :let g:filetype_asp = "aspvbs"
630
631
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000632BAAN *baan.vim* *baan-syntax*
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000633
634The baan.vim gives syntax support for BaanC of release BaanIV upto SSA ERP LN
635for both 3 GL and 4 GL programming. Large number of standard defines/constants
636are supported.
637
638Some special violation of coding standards will be signalled when one specify
639in ones |.vimrc|: >
640 let baan_code_stds=1
641
642*baan-folding*
643
644Syntax folding can be enabled at various levels through the variables
645mentioned below (Set those in your |.vimrc|). The more complex folding on
646source blocks and SQL can be CPU intensive.
647
648To allow any folding and enable folding at function level use: >
649 let baan_fold=1
650Folding can be enabled at source block level as if, while, for ,... The
651indentation preceding the begin/end keywords has to match (spaces are not
652considered equal to a tab). >
653 let baan_fold_block=1
654Folding can be enabled for embedded SQL blocks as SELECT, SELECTDO,
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000655SELECTEMPTY, ... The indentation preceding the begin/end keywords has to
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000656match (spaces are not considered equal to a tab). >
657 let baan_fold_sql=1
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000658Note: Block folding can result in many small folds. It is suggested to |:set|
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000659the options 'foldminlines' and 'foldnestmax' in |.vimrc| or use |:setlocal| in
660.../after/syntax/baan.vim (see |after-directory|). Eg: >
661 set foldminlines=5
662 set foldnestmax=6
663
664
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000665BASIC *basic.vim* *vb.vim* *ft-basic-syntax* *ft-vb-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666
667Both Visual Basic and "normal" basic use the extension ".bas". To detect
668which one should be used, Vim checks for the string "VB_Name" in the first
669five lines of the file. If it is not found, filetype will be "basic",
670otherwise "vb". Files with the ".frm" extension will always be seen as Visual
671Basic.
672
673
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000674C *c.vim* *ft-c-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675
676A few things in C highlighting are optional. To enable them assign any value
677to the respective variable. Example: >
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000678 :let c_comment_strings = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679To disable them use ":unlet". Example: >
680 :unlet c_comment_strings
681
682Variable Highlight ~
683c_gnu GNU gcc specific items
684c_comment_strings strings and numbers inside a comment
685c_space_errors trailing white space and spaces before a <Tab>
686c_no_trail_space_error ... but no trailing spaces
687c_no_tab_space_error ... but no spaces before a <Tab>
688c_no_bracket_error don't highlight {}; inside [] as errors
Bram Moolenaar677ee682005-01-27 14:41:15 +0000689c_no_curly_error don't highlight {}; inside [] and () as errors;
690 except { and } in first column
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000691c_curly_error highlight a missing }; this forces syncing from the
692 start of the file, can be slow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693c_no_ansi don't do standard ANSI types and constants
694c_ansi_typedefs ... but do standard ANSI types
695c_ansi_constants ... but do standard ANSI constants
696c_no_utf don't highlight \u and \U in strings
697c_syntax_for_h use C syntax for *.h files, instead of C++
698c_no_if0 don't highlight "#if 0" blocks as comments
699c_no_cformat don't highlight %-formats in strings
700c_no_c99 don't highlight C99 standard items
701
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000702When 'foldmethod' is set to "syntax" then /* */ comments and { } blocks will
703become a fold. If you don't want comments to become a fold use: >
704 :let c_no_comment_fold = 1
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000705"#if 0" blocks are also folded, unless: >
706 :let c_no_if0_fold = 1
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000707
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708If you notice highlighting errors while scrolling backwards, which are fixed
709when redrawing with CTRL-L, try setting the "c_minlines" internal variable
710to a larger number: >
711 :let c_minlines = 100
712This will make the syntax synchronization start 100 lines before the first
713displayed line. The default value is 50 (15 when c_no_if0 is set). The
714disadvantage of using a larger number is that redrawing can become slow.
715
716When using the "#if 0" / "#endif" comment highlighting, notice that this only
717works when the "#if 0" is within "c_minlines" from the top of the window. If
718you have a long "#if 0" construct it will not be highlighted correctly.
719
720To match extra items in comments, use the cCommentGroup cluster.
721Example: >
722 :au Syntax c call MyCadd()
723 :function MyCadd()
724 : syn keyword cMyItem contained Ni
725 : syn cluster cCommentGroup add=cMyItem
726 : hi link cMyItem Title
727 :endfun
728
729ANSI constants will be highlighted with the "cConstant" group. This includes
730"NULL", "SIG_IGN" and others. But not "TRUE", for example, because this is
731not in the ANSI standard. If you find this confusing, remove the cConstant
732highlighting: >
733 :hi link cConstant NONE
734
735If you see '{' and '}' highlighted as an error where they are OK, reset the
736highlighting for cErrInParen and cErrInBracket.
737
738If you want to use folding in your C files, you can add these lines in a file
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200739in the "after" directory in 'runtimepath'. For Unix this would be
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740~/.vim/after/syntax/c.vim. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 syn sync fromstart
742 set foldmethod=syntax
743
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000744CH *ch.vim* *ft-ch-syntax*
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000745
746C/C++ interpreter. Ch has similar syntax highlighting to C and builds upon
747the C syntax file. See |c.vim| for all the settings that are available for C.
748
749By setting a variable you can tell Vim to use Ch syntax for *.h files, instead
750of C or C++: >
751 :let ch_syntax_for_h = 1
752
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000754CHILL *chill.vim* *ft-chill-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755
756Chill syntax highlighting is similar to C. See |c.vim| for all the settings
757that are available. Additionally there is:
758
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759chill_space_errors like c_space_errors
760chill_comment_string like c_comment_strings
761chill_minlines like c_minlines
762
763
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000764CHANGELOG *changelog.vim* *ft-changelog-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765
766ChangeLog supports highlighting spaces at the start of a line.
767If you do not like this, add following line to your .vimrc: >
768 let g:changelog_spacing_errors = 0
769This works the next time you edit a changelog file. You can also use
770"b:changelog_spacing_errors" to set this per buffer (before loading the syntax
771file).
772
773You can change the highlighting used, e.g., to flag the spaces as an error: >
774 :hi link ChangelogError Error
775Or to avoid the highlighting: >
776 :hi link ChangelogError NONE
777This works immediately.
778
779
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000780COBOL *cobol.vim* *ft-cobol-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781
782COBOL highlighting has different needs for legacy code than it does for fresh
783development. This is due to differences in what is being done (maintenance
784versus development) and other factors. To enable legacy code highlighting,
785add this line to your .vimrc: >
786 :let cobol_legacy_code = 1
787To disable it again, use this: >
788 :unlet cobol_legacy_code
789
790
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000791COLD FUSION *coldfusion.vim* *ft-coldfusion-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000793The ColdFusion has its own version of HTML comments. To turn on ColdFusion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794comment highlighting, add the following line to your startup file: >
795
796 :let html_wrong_comments = 1
797
798The ColdFusion syntax file is based on the HTML syntax file.
799
800
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000801CSH *csh.vim* *ft-csh-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802
803This covers the shell named "csh". Note that on some systems tcsh is actually
804used.
805
806Detecting whether a file is csh or tcsh is notoriously hard. Some systems
807symlink /bin/csh to /bin/tcsh, making it almost impossible to distinguish
808between csh and tcsh. In case VIM guesses wrong you can set the
809"filetype_csh" variable. For using csh: >
810
811 :let filetype_csh = "csh"
812
813For using tcsh: >
814
815 :let filetype_csh = "tcsh"
816
817Any script with a tcsh extension or a standard tcsh filename (.tcshrc,
818tcsh.tcshrc, tcsh.login) will have filetype tcsh. All other tcsh/csh scripts
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000819will be classified as tcsh, UNLESS the "filetype_csh" variable exists. If the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820"filetype_csh" variable exists, the filetype will be set to the value of the
821variable.
822
823
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000824CYNLIB *cynlib.vim* *ft-cynlib-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825
826Cynlib files are C++ files that use the Cynlib class library to enable
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000827hardware modelling and simulation using C++. Typically Cynlib files have a .cc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828or a .cpp extension, which makes it very difficult to distinguish them from a
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000829normal C++ file. Thus, to enable Cynlib highlighting for .cc files, add this
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830line to your .vimrc file: >
831
832 :let cynlib_cyntax_for_cc=1
833
834Similarly for cpp files (this extension is only usually used in Windows) >
835
836 :let cynlib_cyntax_for_cpp=1
837
838To disable these again, use this: >
839
840 :unlet cynlib_cyntax_for_cc
841 :unlet cynlib_cyntax_for_cpp
842<
843
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000844CWEB *cweb.vim* *ft-cweb-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845
846Files matching "*.w" could be Progress or cweb. If the automatic detection
847doesn't work for you, or you don't edit Progress at all, use this in your
848startup vimrc: >
849 :let filetype_w = "cweb"
850
851
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000852DESKTOP *desktop.vim* *ft-desktop-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853
854Primary goal of this syntax file is to highlight .desktop and .directory files
Bram Moolenaara17d4c12010-05-30 18:30:36 +0200855according to freedesktop.org standard:
856http://standards.freedesktop.org/desktop-entry-spec/latest/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857But actually almost none implements this standard fully. Thus it will
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000858highlight all Unix ini files. But you can force strict highlighting according
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859to standard by placing this in your vimrc file: >
860 :let enforce_freedesktop_standard = 1
861
862
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000863DIRCOLORS *dircolors.vim* *ft-dircolors-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864
865The dircolors utility highlighting definition has one option. It exists to
866provide compatibility with the Slackware GNU/Linux distributions version of
867the command. It adds a few keywords that are generally ignored by most
868versions. On Slackware systems, however, the utility accepts the keywords and
869uses them for processing. To enable the Slackware keywords add the following
870line to your startup file: >
871 let dircolors_is_slackware = 1
872
873
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000874DOCBOOK *docbk.vim* *ft-docbk-syntax* *docbook*
875DOCBOOK XML *docbkxml.vim* *ft-docbkxml-syntax*
876DOCBOOK SGML *docbksgml.vim* *ft-docbksgml-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877
878There are two types of DocBook files: SGML and XML. To specify what type you
879are using the "b:docbk_type" variable should be set. Vim does this for you
880automatically if it can recognize the type. When Vim can't guess it the type
881defaults to XML.
882You can set the type manually: >
883 :let docbk_type = "sgml"
884or: >
885 :let docbk_type = "xml"
886You need to do this before loading the syntax file, which is complicated.
887Simpler is setting the filetype to "docbkxml" or "docbksgml": >
888 :set filetype=docbksgml
889or: >
890 :set filetype=docbkxml
891
892
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000893DOSBATCH *dosbatch.vim* *ft-dosbatch-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894
895There is one option with highlighting DOS batch files. This covers new
896extensions to the Command Interpreter introduced with Windows 2000 and
897is controlled by the variable dosbatch_cmdextversion. For Windows NT
898this should have the value 1, and for Windows 2000 it should be 2.
899Select the version you want with the following line: >
900
Bram Moolenaar8299df92004-07-10 09:47:34 +0000901 :let dosbatch_cmdextversion = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902
903If this variable is not defined it defaults to a value of 2 to support
904Windows 2000.
905
Bram Moolenaar8299df92004-07-10 09:47:34 +0000906A second option covers whether *.btm files should be detected as type
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000907"dosbatch" (MS-DOS batch files) or type "btm" (4DOS batch files). The latter
908is used by default. You may select the former with the following line: >
Bram Moolenaar8299df92004-07-10 09:47:34 +0000909
910 :let g:dosbatch_syntax_for_btm = 1
911
912If this variable is undefined or zero, btm syntax is selected.
913
914
Bram Moolenaar8cacf352006-04-15 20:27:24 +0000915DOXYGEN *doxygen.vim* *doxygen-syntax*
916
917Doxygen generates code documentation using a special documentation format
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000918(similar to Javadoc). This syntax script adds doxygen highlighting to c, cpp,
919idl and php files, and should also work with java.
Bram Moolenaar8cacf352006-04-15 20:27:24 +0000920
Bram Moolenaar25394022007-05-10 19:06:20 +0000921There are a few of ways to turn on doxygen formatting. It can be done
922explicitly or in a modeline by appending '.doxygen' to the syntax of the file.
923Example: >
Bram Moolenaar8cacf352006-04-15 20:27:24 +0000924 :set syntax=c.doxygen
925or >
926 // vim:syntax=c.doxygen
927
Bram Moolenaar25394022007-05-10 19:06:20 +0000928It can also be done automatically for c, cpp and idl files by setting the
929global or buffer-local variable load_doxygen_syntax. This is done by adding
930the following to your .vimrc. >
Bram Moolenaar8cacf352006-04-15 20:27:24 +0000931 :let g:load_doxygen_syntax=1
932
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200933There are a couple of variables that have an effect on syntax highlighting, and
Bram Moolenaar8cacf352006-04-15 20:27:24 +0000934are to do with non-standard highlighting options.
935
936Variable Default Effect ~
937g:doxygen_enhanced_color
938g:doxygen_enhanced_colour 0 Use non-standard highlighting for
939 doxygen comments.
940
941doxygen_my_rendering 0 Disable rendering of HTML bold, italic
942 and html_my_rendering underline.
943
944doxygen_javadoc_autobrief 1 Set to 0 to disable javadoc autobrief
945 colour highlighting.
946
947doxygen_end_punctuation '[.]' Set to regexp match for the ending
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000948 punctuation of brief
Bram Moolenaar8cacf352006-04-15 20:27:24 +0000949
950There are also some hilight groups worth mentioning as they can be useful in
951configuration.
952
953Highlight Effect ~
954doxygenErrorComment The colour of an end-comment when missing
955 punctuation in a code, verbatim or dot section
956doxygenLinkError The colour of an end-comment when missing the
957 \endlink from a \link section.
958
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000960DTD *dtd.vim* *ft-dtd-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000962The DTD syntax highlighting is case sensitive by default. To disable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963case-sensitive highlighting, add the following line to your startup file: >
964
965 :let dtd_ignore_case=1
966
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000967The DTD syntax file will highlight unknown tags as errors. If
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968this is annoying, it can be turned off by setting: >
969
970 :let dtd_no_tag_errors=1
971
972before sourcing the dtd.vim syntax file.
973Parameter entity names are highlighted in the definition using the
974'Type' highlighting group and 'Comment' for punctuation and '%'.
975Parameter entity instances are highlighted using the 'Constant'
976highlighting group and the 'Type' highlighting group for the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000977delimiters % and ;. This can be turned off by setting: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978
979 :let dtd_no_param_entities=1
980
981The DTD syntax file is also included by xml.vim to highlight included dtd's.
982
983
Bram Moolenaarda2303d2005-08-30 21:55:26 +0000984EIFFEL *eiffel.vim* *ft-eiffel-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985
986While Eiffel is not case-sensitive, its style guidelines are, and the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000987syntax highlighting file encourages their use. This also allows to
988highlight class names differently. If you want to disable case-sensitive
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989highlighting, add the following line to your startup file: >
990
991 :let eiffel_ignore_case=1
992
993Case still matters for class names and TODO marks in comments.
994
995Conversely, for even stricter checks, add one of the following lines: >
996
997 :let eiffel_strict=1
998 :let eiffel_pedantic=1
999
1000Setting eiffel_strict will only catch improper capitalization for the
1001five predefined words "Current", "Void", "Result", "Precursor", and
1002"NONE", to warn against their accidental use as feature or class names.
1003
1004Setting eiffel_pedantic will enforce adherence to the Eiffel style
1005guidelines fairly rigorously (like arbitrary mixes of upper- and
1006lowercase letters as well as outdated ways to capitalize keywords).
1007
1008If you want to use the lower-case version of "Current", "Void",
1009"Result", and "Precursor", you can use >
1010
1011 :let eiffel_lower_case_predef=1
1012
1013instead of completely turning case-sensitive highlighting off.
1014
1015Support for ISE's proposed new creation syntax that is already
1016experimentally handled by some compilers can be enabled by: >
1017
1018 :let eiffel_ise=1
1019
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001020Finally, some vendors support hexadecimal constants. To handle them, add >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021
1022 :let eiffel_hex_constants=1
1023
1024to your startup file.
1025
1026
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001027ERLANG *erlang.vim* *ft-erlang-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028
1029The erlang highlighting supports Erlang (ERicsson LANGuage).
1030Erlang is case sensitive and default extension is ".erl".
1031
1032If you want to disable keywords highlighting, put in your .vimrc: >
1033 :let erlang_keywords = 1
1034If you want to disable built-in-functions highlighting, put in your
1035.vimrc file: >
1036 :let erlang_functions = 1
1037If you want to disable special characters highlighting, put in
1038your .vimrc: >
1039 :let erlang_characters = 1
1040
1041
Bram Moolenaard68071d2006-05-02 22:08:30 +00001042FLEXWIKI *flexwiki.vim* *ft-flexwiki-syntax*
1043
1044FlexWiki is an ASP.NET-based wiki package available at http://www.flexwiki.com
1045
1046Syntax highlighting is available for the most common elements of FlexWiki
1047syntax. The associated ftplugin script sets some buffer-local options to make
1048editing FlexWiki pages more convenient. FlexWiki considers a newline as the
1049start of a new paragraph, so the ftplugin sets 'tw'=0 (unlimited line length),
1050'wrap' (wrap long lines instead of using horizontal scrolling), 'linebreak'
1051(to wrap at a character in 'breakat' instead of at the last char on screen),
1052and so on. It also includes some keymaps that are disabled by default.
1053
1054If you want to enable the keymaps that make "j" and "k" and the cursor keys
1055move up and down by display lines, add this to your .vimrc: >
1056 :let flexwiki_maps = 1
1057
1058
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001059FORM *form.vim* *ft-form-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060
1061The coloring scheme for syntax elements in the FORM file uses the default
1062modes Conditional, Number, Statement, Comment, PreProc, Type, and String,
Bram Moolenaardd2a0d82007-05-12 15:07:00 +00001063following the language specifications in 'Symbolic Manipulation with FORM' by
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064J.A.M. Vermaseren, CAN, Netherlands, 1991.
1065
1066If you want include your own changes to the default colors, you have to
1067redefine the following syntax groups:
1068
1069 - formConditional
1070 - formNumber
1071 - formStatement
1072 - formHeaderStatement
1073 - formComment
1074 - formPreProc
1075 - formDirective
1076 - formType
1077 - formString
1078
1079Note that the form.vim syntax file implements FORM preprocessor commands and
1080directives per default in the same syntax group.
1081
1082A predefined enhanced color mode for FORM is available to distinguish between
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001083header statements and statements in the body of a FORM program. To activate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084this mode define the following variable in your vimrc file >
1085
1086 :let form_enhanced_color=1
1087
1088The enhanced mode also takes advantage of additional color features for a dark
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001089gvim display. Here, statements are colored LightYellow instead of Yellow, and
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090conditionals are LightBlue for better distinction.
1091
1092
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001093FORTRAN *fortran.vim* *ft-fortran-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094
1095Default highlighting and dialect ~
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001096Highlighting appropriate for f95 (Fortran 95) is used by default. This choice
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097should be appropriate for most users most of the time because Fortran 95 is a
Bram Moolenaar365bdf72010-07-24 20:57:44 +02001098superset of Fortran 90 and almost a superset of Fortran 77. Support for
1099Fortran 2003 and Fortran 2008 features has been introduced and is
Bram Moolenaare06c1882010-07-21 22:05:20 +02001100automatically available in the default (f95) highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101
1102Fortran source code form ~
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001103Fortran 9x code can be in either fixed or free source form. Note that the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104syntax highlighting will not be correct if the form is incorrectly set.
1105
1106When you create a new fortran file, the syntax script assumes fixed source
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001107form. If you always use free source form, then >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 :let fortran_free_source=1
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001109in your .vimrc prior to the :syntax on command. If you always use fixed source
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110form, then >
1111 :let fortran_fixed_source=1
1112in your .vimrc prior to the :syntax on command.
1113
1114If the form of the source code depends upon the file extension, then it is
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001115most convenient to set fortran_free_source in a ftplugin file. For more
1116information on ftplugin files, see |ftplugin|. For example, if all your
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117fortran files with an .f90 extension are written in free source form and the
1118rest in fixed source form, add the following code to your ftplugin file >
1119 let s:extfname = expand("%:e")
1120 if s:extfname ==? "f90"
1121 let fortran_free_source=1
1122 unlet! fortran_fixed_source
1123 else
1124 let fortran_fixed_source=1
1125 unlet! fortran_free_source
1126 endif
1127Note that this will work only if the "filetype plugin indent on" command
1128precedes the "syntax on" command in your .vimrc file.
1129
1130When you edit an existing fortran file, the syntax script will assume free
1131source form if the fortran_free_source variable has been set, and assumes
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001132fixed source form if the fortran_fixed_source variable has been set. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133neither of these variables have been set, the syntax script attempts to
1134determine which source form has been used by examining the first five columns
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001135of the first 250 lines of your file. If no signs of free source form are
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001136detected, then the file is assumed to be in fixed source form. The algorithm
1137should work in the vast majority of cases. In some cases, such as a file that
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001138begins with 250 or more full-line comments, the script may incorrectly decide
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001139that the fortran code is in fixed form. If that happens, just add a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140non-comment statement beginning anywhere in the first five columns of the
1141first twenty five lines, save (:w) and then reload (:e!) the file.
1142
1143Tabs in fortran files ~
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001144Tabs are not recognized by the Fortran standards. Tabs are not a good idea in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145fixed format fortran source code which requires fixed column boundaries.
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001146Therefore, tabs are marked as errors. Nevertheless, some programmers like
1147using tabs. If your fortran files contain tabs, then you should set the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148variable fortran_have_tabs in your .vimrc with a command such as >
1149 :let fortran_have_tabs=1
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001150placed prior to the :syntax on command. Unfortunately, the use of tabs will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151mean that the syntax file will not be able to detect incorrect margins.
1152
1153Syntax folding of fortran files ~
1154If you wish to use foldmethod=syntax, then you must first set the variable
1155fortran_fold with a command such as >
1156 :let fortran_fold=1
1157to instruct the syntax script to define fold regions for program units, that
1158is main programs starting with a program statement, subroutines, function
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001159subprograms, block data subprograms, interface blocks, and modules. If you
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160also set the variable fortran_fold_conditionals with a command such as >
1161 :let fortran_fold_conditionals=1
1162then fold regions will also be defined for do loops, if blocks, and select
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001163case constructs. If you also set the variable
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164fortran_fold_multilinecomments with a command such as >
1165 :let fortran_fold_multilinecomments=1
1166then fold regions will also be defined for three or more consecutive comment
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001167lines. Note that defining fold regions can be slow for large files.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168
1169If fortran_fold, and possibly fortran_fold_conditionals and/or
1170fortran_fold_multilinecomments, have been set, then vim will fold your file if
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001171you set foldmethod=syntax. Comments or blank lines placed between two program
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172units are not folded because they are seen as not belonging to any program
1173unit.
1174
1175More precise fortran syntax ~
1176If you set the variable fortran_more_precise with a command such as >
1177 :let fortran_more_precise=1
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001178then the syntax coloring will be more precise but slower. In particular,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179statement labels used in do, goto and arithmetic if statements will be
1180recognized, as will construct names at the end of a do, if, select or forall
1181construct.
1182
1183Non-default fortran dialects ~
1184The syntax script supports five Fortran dialects: f95, f90, f77, the Lahey
1185subset elf90, and the Imagine1 subset F.
1186
1187If you use f77 with extensions, even common ones like do/enddo loops, do/while
1188loops and free source form that are supported by most f77 compilers including
1189g77 (GNU Fortran), then you will probably find the default highlighting
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001190satisfactory. However, if you use strict f77 with no extensions, not even free
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191source form or the MIL STD 1753 extensions, then the advantages of setting the
1192dialect to f77 are that names such as SUM are recognized as user variable
1193names and not highlighted as f9x intrinsic functions, that obsolete constructs
1194such as ASSIGN statements are not highlighted as todo items, and that fixed
1195source form will be assumed.
1196
1197If you use elf90 or F, the advantage of setting the dialect appropriately is
1198that f90 features excluded from these dialects will be highlighted as todo
1199items and that free source form will be assumed as required for these
1200dialects.
1201
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001202The dialect can be selected by setting the variable fortran_dialect. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203permissible values of fortran_dialect are case-sensitive and must be "f95",
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001204"f90", "f77", "elf" or "F". Invalid values of fortran_dialect are ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205
1206If all your fortran files use the same dialect, set fortran_dialect in your
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001207.vimrc prior to your syntax on statement. If the dialect depends upon the file
1208extension, then it is most convenient to set it in a ftplugin file. For more
1209information on ftplugin files, see |ftplugin|. For example, if all your
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210fortran files with an .f90 extension are written in the elf subset, your
1211ftplugin file should contain the code >
1212 let s:extfname = expand("%:e")
1213 if s:extfname ==? "f90"
1214 let fortran_dialect="elf"
1215 else
1216 unlet! fortran_dialect
1217 endif
1218Note that this will work only if the "filetype plugin indent on" command
1219precedes the "syntax on" command in your .vimrc file.
1220
1221Finer control is necessary if the file extension does not uniquely identify
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001222the dialect. You can override the default dialect, on a file-by-file basis, by
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223including a comment with the directive "fortran_dialect=xx" (where xx=f77 or
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001224elf or F or f90 or f95) in one of the first three lines in your file. For
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225example, your older .f files may be written in extended f77 but your newer
1226ones may be F codes, and you would identify the latter by including in the
1227first three lines of those files a Fortran comment of the form >
1228 ! fortran_dialect=F
1229F overrides elf if both directives are present.
1230
1231Limitations ~
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001232Parenthesis checking does not catch too few closing parentheses. Hollerith
1233strings are not recognized. Some keywords may be highlighted incorrectly
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234because Fortran90 has no reserved words.
1235
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001236For further information related to fortran, see |ft-fortran-indent| and
1237|ft-fortran-plugin|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238
1239
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001240FVWM CONFIGURATION FILES *fvwm.vim* *ft-fvwm-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241
1242In order for Vim to recognize Fvwm configuration files that do not match
1243the patterns *fvwmrc* or *fvwm2rc* , you must put additional patterns
1244appropriate to your system in your myfiletypes.vim file. For these
1245patterns, you must set the variable "b:fvwm_version" to the major version
1246number of Fvwm, and the 'filetype' option to fvwm.
1247
1248For example, to make Vim identify all files in /etc/X11/fvwm2/
1249as Fvwm2 configuration files, add the following: >
1250
1251 :au! BufNewFile,BufRead /etc/X11/fvwm2/* let b:fvwm_version = 2 |
1252 \ set filetype=fvwm
1253
1254If you'd like Vim to highlight all valid color names, tell it where to
1255find the color database (rgb.txt) on your system. Do this by setting
1256"rgb_file" to its location. Assuming your color database is located
1257in /usr/X11/lib/X11/, you should add the line >
1258
1259 :let rgb_file = "/usr/X11/lib/X11/rgb.txt"
1260
1261to your .vimrc file.
1262
1263
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001264GSP *gsp.vim* *ft-gsp-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265
1266The default coloring style for GSP pages is defined by |html.vim|, and
1267the coloring for java code (within java tags or inline between backticks)
1268is defined by |java.vim|. The following HTML groups defined in |html.vim|
1269are redefined to incorporate and highlight inline java code:
1270
1271 htmlString
1272 htmlValue
1273 htmlEndTag
1274 htmlTag
1275 htmlTagN
1276
1277Highlighting should look fine most of the places where you'd see inline
1278java code, but in some special cases it may not. To add another HTML
1279group where you will have inline java code where it does not highlight
1280correctly, just copy the line you want from |html.vim| and add gspJava
1281to the contains clause.
1282
1283The backticks for inline java are highlighted according to the htmlError
1284group to make them easier to see.
1285
1286
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001287GROFF *groff.vim* *ft-groff-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288
1289The groff syntax file is a wrapper for |nroff.vim|, see the notes
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001290under that heading for examples of use and configuration. The purpose
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291of this wrapper is to set up groff syntax extensions by setting the
1292filetype from a |modeline| or in a personal filetype definitions file
1293(see |filetype.txt|).
1294
1295
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001296HASKELL *haskell.vim* *lhaskell.vim* *ft-haskell-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297
1298The Haskell syntax files support plain Haskell code as well as literate
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001299Haskell code, the latter in both Bird style and TeX style. The Haskell
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300syntax highlighting will also highlight C preprocessor directives.
1301
1302If you want to highlight delimiter characters (useful if you have a
1303light-coloured background), add to your .vimrc: >
1304 :let hs_highlight_delimiters = 1
1305To treat True and False as keywords as opposed to ordinary identifiers,
1306add: >
1307 :let hs_highlight_boolean = 1
1308To also treat the names of primitive types as keywords: >
1309 :let hs_highlight_types = 1
1310And to treat the names of even more relatively common types as keywords: >
1311 :let hs_highlight_more_types = 1
1312If you want to highlight the names of debugging functions, put in
1313your .vimrc: >
1314 :let hs_highlight_debug = 1
1315
1316The Haskell syntax highlighting also highlights C preprocessor
1317directives, and flags lines that start with # but are not valid
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001318directives as erroneous. This interferes with Haskell's syntax for
1319operators, as they may start with #. If you want to highlight those
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320as operators as opposed to errors, put in your .vimrc: >
1321 :let hs_allow_hash_operator = 1
1322
1323The syntax highlighting for literate Haskell code will try to
1324automatically guess whether your literate Haskell code contains
1325TeX markup or not, and correspondingly highlight TeX constructs
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001326or nothing at all. You can override this globally by putting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327in your .vimrc >
1328 :let lhs_markup = none
1329for no highlighting at all, or >
1330 :let lhs_markup = tex
1331to force the highlighting to always try to highlight TeX markup.
1332For more flexibility, you may also use buffer local versions of
1333this variable, so e.g. >
1334 :let b:lhs_markup = tex
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001335will force TeX highlighting for a particular buffer. It has to be
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336set before turning syntax highlighting on for the buffer or
1337loading a file.
1338
1339
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001340HTML *html.vim* *ft-html-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341
1342The coloring scheme for tags in the HTML file works as follows.
1343
1344The <> of opening tags are colored differently than the </> of a closing tag.
1345This is on purpose! For opening tags the 'Function' color is used, while for
1346closing tags the 'Type' color is used (See syntax.vim to check how those are
1347defined for you)
1348
1349Known tag names are colored the same way as statements in C. Unknown tag
1350names are colored with the same color as the <> or </> respectively which
1351makes it easy to spot errors
1352
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001353Note that the same is true for argument (or attribute) names. Known attribute
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354names are colored differently than unknown ones.
1355
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001356Some HTML tags are used to change the rendering of text. The following tags
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357are recognized by the html.vim syntax coloring file and change the way normal
1358text is shown: <B> <I> <U> <EM> <STRONG> (<EM> is used as an alias for <I>,
1359while <STRONG> as an alias for <B>), <H1> - <H6>, <HEAD>, <TITLE> and <A>, but
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001360only if used as a link (that is, it must include a href as in
Bram Moolenaar25394022007-05-10 19:06:20 +00001361<A href="somefile.html">).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362
1363If you want to change how such text is rendered, you must redefine the
1364following syntax groups:
1365
1366 - htmlBold
1367 - htmlBoldUnderline
1368 - htmlBoldUnderlineItalic
1369 - htmlUnderline
1370 - htmlUnderlineItalic
1371 - htmlItalic
1372 - htmlTitle for titles
1373 - htmlH1 - htmlH6 for headings
1374
1375To make this redefinition work you must redefine them all with the exception
1376of the last two (htmlTitle and htmlH[1-6], which are optional) and define the
1377following variable in your vimrc (this is due to the order in which the files
1378are read during initialization) >
1379 :let html_my_rendering=1
1380
1381If you'd like to see an example download mysyntax.vim at
1382http://www.fleiner.com/vim/download.html
1383
1384You can also disable this rendering by adding the following line to your
1385vimrc file: >
1386 :let html_no_rendering=1
1387
1388HTML comments are rather special (see an HTML reference document for the
1389details), and the syntax coloring scheme will highlight all errors.
1390However, if you prefer to use the wrong style (starts with <!-- and
1391ends with --!>) you can define >
1392 :let html_wrong_comments=1
1393
1394JavaScript and Visual Basic embedded inside HTML documents are highlighted as
1395'Special' with statements, comments, strings and so on colored as in standard
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001396programming languages. Note that only JavaScript and Visual Basic are currently
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397supported, no other scripting language has been added yet.
1398
1399Embedded and inlined cascading style sheets (CSS) are highlighted too.
1400
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001401There are several html preprocessor languages out there. html.vim has been
1402written such that it should be trivial to include it. To do so add the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403following two lines to the syntax coloring file for that language
1404(the example comes from the asp.vim file):
1405
1406 runtime! syntax/html.vim
1407 syn cluster htmlPreproc add=asp
1408
1409Now you just need to make sure that you add all regions that contain
1410the preprocessor language to the cluster htmlPreproc.
1411
1412
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001413HTML/OS (by Aestiva) *htmlos.vim* *ft-htmlos-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414
1415The coloring scheme for HTML/OS works as follows:
1416
1417Functions and variable names are the same color by default, because VIM
1418doesn't specify different colors for Functions and Identifiers. To change
1419this (which is recommended if you want function names to be recognizable in a
1420different color) you need to add the following line to either your ~/.vimrc: >
1421 :hi Function term=underline cterm=bold ctermfg=LightGray
1422
1423Of course, the ctermfg can be a different color if you choose.
1424
1425Another issues that HTML/OS runs into is that there is no special filetype to
1426signify that it is a file with HTML/OS coding. You can change this by opening
1427a file and turning on HTML/OS syntax by doing the following: >
1428 :set syntax=htmlos
1429
1430Lastly, it should be noted that the opening and closing characters to begin a
1431block of HTML/OS code can either be << or [[ and >> or ]], respectively.
1432
1433
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001434IA64 *ia64.vim* *intel-itanium* *ft-ia64-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435
1436Highlighting for the Intel Itanium 64 assembly language. See |asm.vim| for
1437how to recognize this filetype.
1438
1439To have *.inc files be recognized as IA64, add this to your .vimrc file: >
1440 :let g:filetype_inc = "ia64"
1441
1442
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001443INFORM *inform.vim* *ft-inform-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444
1445Inform highlighting includes symbols provided by the Inform Library, as
1446most programs make extensive use of it. If do not wish Library symbols
1447to be highlighted add this to your vim startup: >
1448 :let inform_highlight_simple=1
1449
1450By default it is assumed that Inform programs are Z-machine targeted,
1451and highlights Z-machine assembly language symbols appropriately. If
1452you intend your program to be targeted to a Glulx/Glk environment you
1453need to add this to your startup sequence: >
1454 :let inform_highlight_glulx=1
1455
1456This will highlight Glulx opcodes instead, and also adds glk() to the
1457set of highlighted system functions.
1458
1459The Inform compiler will flag certain obsolete keywords as errors when
1460it encounters them. These keywords are normally highlighted as errors
1461by Vim. To prevent such error highlighting, you must add this to your
1462startup sequence: >
1463 :let inform_suppress_obsolete=1
1464
1465By default, the language features highlighted conform to Compiler
1466version 6.30 and Library version 6.11. If you are using an older
1467Inform development environment, you may with to add this to your
1468startup sequence: >
1469 :let inform_highlight_old=1
1470
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00001471IDL *idl.vim* *idl-syntax*
1472
1473IDL (Interface Definition Language) files are used to define RPC calls. In
1474Microsoft land, this is also used for defining COM interfaces and calls.
1475
1476IDL's structure is simple enough to permit a full grammar based approach to
1477rather than using a few heuristics. The result is large and somewhat
Bram Moolenaar25394022007-05-10 19:06:20 +00001478repetitive but seems to work.
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00001479
1480There are some Microsoft extensions to idl files that are here. Some of them
1481are disabled by defining idl_no_ms_extensions.
1482
1483The more complex of the extensions are disabled by defining idl_no_extensions.
1484
1485Variable Effect ~
1486
1487idl_no_ms_extensions Disable some of the Microsoft specific
1488 extensions
1489idl_no_extensions Disable complex extensions
1490idlsyntax_showerror Show IDL errors (can be rather intrusive, but
1491 quite helpful)
1492idlsyntax_showerror_soft Use softer colours by default for errors
1493
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001495JAVA *java.vim* *ft-java-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496
1497The java.vim syntax highlighting file offers several options:
1498
1499In Java 1.0.2 it was never possible to have braces inside parens, so this was
1500flagged as an error. Since Java 1.1 this is possible (with anonymous
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001501classes), and therefore is no longer marked as an error. If you prefer the old
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502way, put the following line into your vim startup file: >
1503 :let java_mark_braces_in_parens_as_errors=1
1504
1505All identifiers in java.lang.* are always visible in all classes. To
1506highlight them use: >
1507 :let java_highlight_java_lang_ids=1
1508
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001509You can also highlight identifiers of most standard Java packages if you
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510download the javaid.vim script at http://www.fleiner.com/vim/download.html.
1511If you prefer to only highlight identifiers of a certain package, say java.io
1512use the following: >
1513 :let java_highlight_java_io=1
1514Check the javaid.vim file for a list of all the packages that are supported.
1515
1516Function names are not highlighted, as the way to find functions depends on
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001517how you write Java code. The syntax file knows two possible ways to highlight
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518functions:
1519
1520If you write function declarations that are always indented by either
1521a tab, 8 spaces or 2 spaces you may want to set >
1522 :let java_highlight_functions="indent"
1523However, if you follow the Java guidelines about how functions and classes are
1524supposed to be named (with respect to upper and lowercase), use >
1525 :let java_highlight_functions="style"
1526If both options do not work for you, but you would still want function
1527declarations to be highlighted create your own definitions by changing the
1528definitions in java.vim or by creating your own java.vim which includes the
1529original one and then adds the code to highlight functions.
1530
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001531In Java 1.1 the functions System.out.println() and System.err.println() should
Bram Moolenaared203462004-06-16 11:19:22 +00001532only be used for debugging. Therefore it is possible to highlight debugging
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001533statements differently. To do this you must add the following definition in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534your startup file: >
1535 :let java_highlight_debug=1
1536The result will be that those statements are highlighted as 'Special'
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001537characters. If you prefer to have them highlighted differently you must define
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538new highlightings for the following groups.:
1539 Debug, DebugSpecial, DebugString, DebugBoolean, DebugType
1540which are used for the statement itself, special characters used in debug
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001541strings, strings, boolean constants and types (this, super) respectively. I
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542have opted to chose another background for those statements.
1543
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001544In order to help you write code that can be easily ported between Java and
1545C++, all C++ keywords can be marked as an error in a Java program. To
1546have this add this line in your .vimrc file: >
1547 :let java_allow_cpp_keywords = 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001549Javadoc is a program that takes special comments out of Java program files and
1550creates HTML pages. The standard configuration will highlight this HTML code
1551similarly to HTML files (see |html.vim|). You can even add Javascript
1552and CSS inside this code (see below). There are four differences however:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 1. The title (all characters up to the first '.' which is followed by
1554 some white space or up to the first '@') is colored differently (to change
1555 the color change the group CommentTitle).
1556 2. The text is colored as 'Comment'.
1557 3. HTML comments are colored as 'Special'
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001558 4. The special Javadoc tags (@see, @param, ...) are highlighted as specials
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 and the argument (for @see, @param, @exception) as Function.
1560To turn this feature off add the following line to your startup file: >
1561 :let java_ignore_javadoc=1
1562
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001563If you use the special Javadoc comment highlighting described above you
1564can also turn on special highlighting for Javascript, visual basic
1565scripts and embedded CSS (stylesheets). This makes only sense if you
1566actually have Javadoc comments that include either Javascript or embedded
1567CSS. The options to use are >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 :let java_javascript=1
1569 :let java_css=1
1570 :let java_vb=1
1571
1572In order to highlight nested parens with different colors define colors
1573for javaParen, javaParen1 and javaParen2, for example with >
1574 :hi link javaParen Comment
1575or >
1576 :hi javaParen ctermfg=blue guifg=#0000ff
1577
1578If you notice highlighting errors while scrolling backwards, which are fixed
1579when redrawing with CTRL-L, try setting the "java_minlines" internal variable
1580to a larger number: >
1581 :let java_minlines = 50
1582This will make the syntax synchronization start 50 lines before the first
1583displayed line. The default value is 10. The disadvantage of using a larger
1584number is that redrawing can become slow.
1585
1586
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001587LACE *lace.vim* *ft-lace-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588
1589Lace (Language for Assembly of Classes in Eiffel) is case insensitive, but the
1590style guide lines are not. If you prefer case insensitive highlighting, just
1591define the vim variable 'lace_case_insensitive' in your startup file: >
1592 :let lace_case_insensitive=1
1593
1594
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001595LEX *lex.vim* *ft-lex-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596
1597Lex uses brute-force synchronizing as the "^%%$" section delimiter
1598gives no clue as to what section follows. Consequently, the value for >
1599 :syn sync minlines=300
1600may be changed by the user if s/he is experiencing synchronization
1601difficulties (such as may happen with large lex files).
1602
1603
Bram Moolenaar6fc45b52010-07-25 17:42:45 +02001604LIFELINES *lifelines.vim* *ft-lifelines-syntax*
1605
1606To highlight deprecated functions as errors, add in your .vimrc: >
1607
1608 :let g:lifelines_deprecated = 1
1609<
1610
Bram Moolenaara5fac542005-10-12 20:58:49 +00001611LISP *lisp.vim* *ft-lisp-syntax*
1612
1613The lisp syntax highlighting provides two options: >
1614
1615 g:lisp_instring : if it exists, then "(...)" strings are highlighted
1616 as if the contents of the string were lisp.
1617 Useful for AutoLisp.
1618 g:lisp_rainbow : if it exists and is nonzero, then differing levels
1619 of parenthesization will receive different
1620 highlighting.
1621<
1622The g:lisp_rainbow option provides 10 levels of individual colorization for
1623the parentheses and backquoted parentheses. Because of the quantity of
1624colorization levels, unlike non-rainbow highlighting, the rainbow mode
1625specifies its highlighting using ctermfg and guifg, thereby bypassing the
1626usual colorscheme control using standard highlighting groups. The actual
1627highlighting used depends on the dark/bright setting (see |'bg'|).
1628
1629
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001630LITE *lite.vim* *ft-lite-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631
1632There are two options for the lite syntax highlighting.
1633
1634If you like SQL syntax highlighting inside Strings, use this: >
1635
1636 :let lite_sql_query = 1
1637
1638For syncing, minlines defaults to 100. If you prefer another value, you can
1639set "lite_minlines" to the value you desire. Example: >
1640
1641 :let lite_minlines = 200
1642
1643
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001644LPC *lpc.vim* *ft-lpc-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001646LPC stands for a simple, memory-efficient language: Lars Pensj| C. The
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647file name of LPC is usually *.c. Recognizing these files as LPC would bother
1648users writing only C programs. If you want to use LPC syntax in Vim, you
1649should set a variable in your .vimrc file: >
1650
1651 :let lpc_syntax_for_c = 1
1652
1653If it doesn't work properly for some particular C or LPC files, use a
1654modeline. For a LPC file:
1655
1656 // vim:set ft=lpc:
1657
1658For a C file that is recognized as LPC:
1659
1660 // vim:set ft=c:
1661
1662If you don't want to set the variable, use the modeline in EVERY LPC file.
1663
1664There are several implementations for LPC, we intend to support most widely
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001665used ones. Here the default LPC syntax is for MudOS series, for MudOS v22
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666and before, you should turn off the sensible modifiers, and this will also
1667asserts the new efuns after v22 to be invalid, don't set this variable when
1668you are using the latest version of MudOS: >
1669
1670 :let lpc_pre_v22 = 1
1671
1672For LpMud 3.2 series of LPC: >
1673
1674 :let lpc_compat_32 = 1
1675
1676For LPC4 series of LPC: >
1677
1678 :let lpc_use_lpc4_syntax = 1
1679
1680For uLPC series of LPC:
1681uLPC has been developed to Pike, so you should use Pike syntax
1682instead, and the name of your source file should be *.pike
1683
1684
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001685LUA *lua.vim* *ft-lua-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00001687This syntax file may be used for Lua 4.0, Lua 5.0 or Lua 5.1 (the latter is
1688the default). You can select one of these versions using the global variables
1689lua_version and lua_subversion. For example, to activate Lua
16904.0 syntax highlighting, use this command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691
1692 :let lua_version = 4
1693
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00001694If you are using Lua 5.0, use these commands: >
1695
1696 :let lua_version = 5
1697 :let lua_subversion = 0
1698
1699To restore highlighting for Lua 5.1: >
1700
1701 :let lua_version = 5
1702 :let lua_subversion = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703
1704
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001705MAIL *mail.vim* *ft-mail.vim*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706
1707Vim highlights all the standard elements of an email (headers, signatures,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001708quoted text and URLs / email addresses). In keeping with standard conventions,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709signatures begin in a line containing only "--" followed optionally by
1710whitespaces and end with a newline.
1711
1712Vim treats lines beginning with ']', '}', '|', '>' or a word followed by '>'
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001713as quoted text. However Vim highlights headers and signatures in quoted text
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714only if the text is quoted with '>' (optionally followed by one space).
1715
1716By default mail.vim synchronises syntax to 100 lines before the first
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001717displayed line. If you have a slow machine, and generally deal with emails
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718with short headers, you can change this to a smaller value: >
1719
1720 :let mail_minlines = 30
1721
1722
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001723MAKE *make.vim* *ft-make-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724
1725In makefiles, commands are usually highlighted to make it easy for you to spot
1726errors. However, this may be too much coloring for you. You can turn this
1727feature off by using: >
1728
1729 :let make_no_commands = 1
1730
1731
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001732MAPLE *maple.vim* *ft-maple-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733
1734Maple V, by Waterloo Maple Inc, supports symbolic algebra. The language
1735supports many packages of functions which are selectively loaded by the user.
1736The standard set of packages' functions as supplied in Maple V release 4 may be
1737highlighted at the user's discretion. Users may place in their .vimrc file: >
1738
1739 :let mvpkg_all= 1
1740
1741to get all package functions highlighted, or users may select any subset by
1742choosing a variable/package from the table below and setting that variable to
17431, also in their .vimrc file (prior to sourcing
1744$VIMRUNTIME/syntax/syntax.vim).
1745
1746 Table of Maple V Package Function Selectors >
1747 mv_DEtools mv_genfunc mv_networks mv_process
1748 mv_Galois mv_geometry mv_numapprox mv_simplex
1749 mv_GaussInt mv_grobner mv_numtheory mv_stats
1750 mv_LREtools mv_group mv_orthopoly mv_student
1751 mv_combinat mv_inttrans mv_padic mv_sumtools
1752 mv_combstruct mv_liesymm mv_plots mv_tensor
1753 mv_difforms mv_linalg mv_plottools mv_totorder
1754 mv_finance mv_logic mv_powseries
1755
1756
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001757MATHEMATICA *mma.vim* *ft-mma-syntax* *ft-mathematica-syntax*
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00001758
1759Empty *.m files will automatically be presumed to be Matlab files unless you
1760have the following in your .vimrc: >
1761
1762 let filetype_m = "mma"
1763
1764
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001765MOO *moo.vim* *ft-moo-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766
1767If you use C-style comments inside expressions and find it mangles your
1768highlighting, you may want to use extended (slow!) matches for C-style
1769comments: >
1770
1771 :let moo_extended_cstyle_comments = 1
1772
1773To disable highlighting of pronoun substitution patterns inside strings: >
1774
1775 :let moo_no_pronoun_sub = 1
1776
1777To disable highlighting of the regular expression operator '%|', and matching
1778'%(' and '%)' inside strings: >
1779
1780 :let moo_no_regexp = 1
1781
1782Unmatched double quotes can be recognized and highlighted as errors: >
1783
1784 :let moo_unmatched_quotes = 1
1785
1786To highlight builtin properties (.name, .location, .programmer etc.): >
1787
1788 :let moo_builtin_properties = 1
1789
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001790Unknown builtin functions can be recognized and highlighted as errors. If you
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791use this option, add your own extensions to the mooKnownBuiltinFunction group.
1792To enable this option: >
1793
1794 :let moo_unknown_builtin_functions = 1
1795
1796An example of adding sprintf() to the list of known builtin functions: >
1797
1798 :syn keyword mooKnownBuiltinFunction sprintf contained
1799
1800
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001801MSQL *msql.vim* *ft-msql-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802
1803There are two options for the msql syntax highlighting.
1804
1805If you like SQL syntax highlighting inside Strings, use this: >
1806
1807 :let msql_sql_query = 1
1808
1809For syncing, minlines defaults to 100. If you prefer another value, you can
1810set "msql_minlines" to the value you desire. Example: >
1811
1812 :let msql_minlines = 200
1813
1814
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001815NCF *ncf.vim* *ft-ncf-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816
1817There is one option for NCF syntax highlighting.
1818
1819If you want to have unrecognized (by ncf.vim) statements highlighted as
1820errors, use this: >
1821
1822 :let ncf_highlight_unknowns = 1
1823
1824If you don't want to highlight these errors, leave it unset.
1825
1826
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001827NROFF *nroff.vim* *ft-nroff-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828
1829The nroff syntax file works with AT&T n/troff out of the box. You need to
1830activate the GNU groff extra features included in the syntax file before you
1831can use them.
1832
1833For example, Linux and BSD distributions use groff as their default text
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001834processing package. In order to activate the extra syntax highlighting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835features for groff, add the following option to your start-up files: >
1836
1837 :let b:nroff_is_groff = 1
1838
1839Groff is different from the old AT&T n/troff that you may still find in
1840Solaris. Groff macro and request names can be longer than 2 characters and
1841there are extensions to the language primitives. For example, in AT&T troff
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001842you access the year as a 2-digit number with the request \(yr. In groff you
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843can use the same request, recognized for compatibility, or you can use groff's
1844native syntax, \[yr]. Furthermore, you can use a 4-digit year directly:
1845\[year]. Macro requests can be longer than 2 characters, for example, GNU mm
1846accepts the requests ".VERBON" and ".VERBOFF" for creating verbatim
1847environments.
1848
1849In order to obtain the best formatted output g/troff can give you, you should
1850follow a few simple rules about spacing and punctuation.
1851
18521. Do not leave empty spaces at the end of lines.
1853
18542. Leave one space and one space only after an end-of-sentence period,
1855 exclamation mark, etc.
1856
18573. For reasons stated below, it is best to follow all period marks with a
1858 carriage return.
1859
1860The reason behind these unusual tips is that g/n/troff have a line breaking
1861algorithm that can be easily upset if you don't follow the rules given above.
1862
1863Unlike TeX, troff fills text line-by-line, not paragraph-by-paragraph and,
1864furthermore, it does not have a concept of glue or stretch, all horizontal and
1865vertical space input will be output as is.
1866
1867Therefore, you should be careful about not using more space between sentences
1868than you intend to have in your final document. For this reason, the common
1869practice is to insert a carriage return immediately after all punctuation
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001870marks. If you want to have "even" text in your final processed output, you
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871need to maintaining regular spacing in the input text. To mark both trailing
1872spaces and two or more spaces after a punctuation as an error, use: >
1873
1874 :let nroff_space_errors = 1
1875
1876Another technique to detect extra spacing and other errors that will interfere
1877with the correct typesetting of your file, is to define an eye-catching
1878highlighting definition for the syntax groups "nroffDefinition" and
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001879"nroffDefSpecial" in your configuration files. For example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880
1881 hi def nroffDefinition term=italic cterm=italic gui=reverse
1882 hi def nroffDefSpecial term=italic,bold cterm=italic,bold
1883 \ gui=reverse,bold
1884
1885If you want to navigate preprocessor entries in your source file as easily as
1886with section markers, you can activate the following option in your .vimrc
1887file: >
1888
1889 let b:preprocs_as_sections = 1
1890
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001891As well, the syntax file adds an extra paragraph marker for the extended
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892paragraph macro (.XP) in the ms package.
1893
1894Finally, there is a |groff.vim| syntax file that can be used for enabling
1895groff syntax highlighting either on a file basis or globally by default.
1896
1897
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001898OCAML *ocaml.vim* *ft-ocaml-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899
1900The OCaml syntax file handles files having the following prefixes: .ml,
1901.mli, .mll and .mly. By setting the following variable >
1902
1903 :let ocaml_revised = 1
1904
1905you can switch from standard OCaml-syntax to revised syntax as supported
1906by the camlp4 preprocessor. Setting the variable >
1907
1908 :let ocaml_noend_error = 1
1909
1910prevents highlighting of "end" as error, which is useful when sources
1911contain very long structures that Vim does not synchronize anymore.
1912
1913
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001914PAPP *papp.vim* *ft-papp-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915
1916The PApp syntax file handles .papp files and, to a lesser extend, .pxml
1917and .pxsl files which are all a mixture of perl/xml/html/other using xml
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001918as the top-level file format. By default everything inside phtml or pxml
1919sections is treated as a string with embedded preprocessor commands. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920you set the variable: >
1921
1922 :let papp_include_html=1
1923
1924in your startup file it will try to syntax-hilight html code inside phtml
1925sections, but this is relatively slow and much too colourful to be able to
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001926edit sensibly. ;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927
1928The newest version of the papp.vim syntax file can usually be found at
1929http://papp.plan9.de.
1930
1931
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001932PASCAL *pascal.vim* *ft-pascal-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933
1934Files matching "*.p" could be Progress or Pascal. If the automatic detection
1935doesn't work for you, or you don't edit Progress at all, use this in your
1936startup vimrc: >
1937
1938 :let filetype_p = "pascal"
1939
1940The Pascal syntax file has been extended to take into account some extensions
1941provided by Turbo Pascal, Free Pascal Compiler and GNU Pascal Compiler.
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001942Delphi keywords are also supported. By default, Turbo Pascal 7.0 features are
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943enabled. If you prefer to stick with the standard Pascal keywords, add the
1944following line to your startup file: >
1945
1946 :let pascal_traditional=1
1947
1948To switch on Delphi specific constructions (such as one-line comments,
1949keywords, etc): >
1950
1951 :let pascal_delphi=1
1952
1953
1954The option pascal_symbol_operator controls whether symbol operators such as +,
1955*, .., etc. are displayed using the Operator color or not. To colorize symbol
1956operators, add the following line to your startup file: >
1957
1958 :let pascal_symbol_operator=1
1959
1960Some functions are highlighted by default. To switch it off: >
1961
1962 :let pascal_no_functions=1
1963
Bram Moolenaar996343d2010-07-04 22:20:21 +02001964Furthermore, there are specific variables for some compilers. Besides
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965pascal_delphi, there are pascal_gpc and pascal_fpc. Default extensions try to
1966match Turbo Pascal. >
1967
1968 :let pascal_gpc=1
1969
1970or >
1971
1972 :let pascal_fpc=1
1973
1974To ensure that strings are defined on a single line, you can define the
1975pascal_one_line_string variable. >
1976
1977 :let pascal_one_line_string=1
1978
1979If you dislike <Tab> chars, you can set the pascal_no_tabs variable. Tabs
1980will be highlighted as Error. >
1981
1982 :let pascal_no_tabs=1
1983
1984
1985
Bram Moolenaarda2303d2005-08-30 21:55:26 +00001986PERL *perl.vim* *ft-perl-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987
1988There are a number of possible options to the perl syntax highlighting.
1989
1990If you use POD files or POD segments, you might: >
1991
1992 :let perl_include_pod = 1
1993
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001994The reduce the complexity of parsing (and increase performance) you can switch
1995off two elements in the parsing of variable names and contents. >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001997To handle package references in variable and function names not differently
1998from the rest of the name (like 'PkgName::' in '$PkgName::VarName'): >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002000 :let perl_no_scope_in_variables = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002002(In Vim 6.x it was the other way around: "perl_want_scope_in_variables"
2003enabled it.)
2004
2005If you do not want complex things like '@{${"foo"}}' to be parsed: >
2006
2007 :let perl_no_extended_vars = 1
2008
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002009(In Vim 6.x it was the other way around: "perl_extended_vars" enabled it.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002011The coloring strings can be changed. By default strings and qq friends will be
2012highlighted like the first line. If you set the variable
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013perl_string_as_statement, it will be highlighted as in the second line.
2014
2015 "hello world!"; qq|hello world|;
2016 ^^^^^^^^^^^^^^NN^^^^^^^^^^^^^^^N (unlet perl_string_as_statement)
2017 S^^^^^^^^^^^^SNNSSS^^^^^^^^^^^SN (let perl_string_as_statement)
2018
2019(^ = perlString, S = perlStatement, N = None at all)
2020
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002021The syncing has 3 options. The first two switch off some triggering of
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022synchronization and should only be needed in case it fails to work properly.
2023If while scrolling all of a sudden the whole screen changes color completely
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002024then you should try and switch off one of those. Let me know if you can figure
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025out the line that causes the mistake.
2026
2027One triggers on "^\s*sub\s*" and the other on "^[$@%]" more or less. >
2028
2029 :let perl_no_sync_on_sub
2030 :let perl_no_sync_on_global_var
2031
2032Below you can set the maximum distance VIM should look for starting points for
2033its attempts in syntax highlighting. >
2034
2035 :let perl_sync_dist = 100
2036
2037If you want to use folding with perl, set perl_fold: >
2038
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002039 :let perl_fold = 1
2040
2041If you want to fold blocks in if statements, etc. as well set the following: >
2042
2043 :let perl_fold_blocks = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002045To avoid folding packages or subs when perl_fold is let, let the appropriate
2046variable(s): >
2047
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002048 :unlet perl_nofold_packages
2049 :unlet perl_nofold_subs
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002050
2051
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002053PHP3 and PHP4 *php.vim* *php3.vim* *ft-php-syntax* *ft-php3-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054
2055[note: previously this was called "php3", but since it now also supports php4
2056it has been renamed to "php"]
2057
2058There are the following options for the php syntax highlighting.
2059
2060If you like SQL syntax highlighting inside Strings: >
2061
2062 let php_sql_query = 1
2063
2064For highlighting the Baselib methods: >
2065
2066 let php_baselib = 1
2067
2068Enable HTML syntax highlighting inside strings: >
2069
2070 let php_htmlInStrings = 1
2071
2072Using the old colorstyle: >
2073
2074 let php_oldStyle = 1
2075
2076Enable highlighting ASP-style short tags: >
2077
2078 let php_asp_tags = 1
2079
2080Disable short tags: >
2081
2082 let php_noShortTags = 1
2083
2084For highlighting parent error ] or ): >
2085
2086 let php_parent_error_close = 1
2087
2088For skipping an php end tag, if there exists an open ( or [ without a closing
2089one: >
2090
2091 let php_parent_error_open = 1
2092
2093Enable folding for classes and functions: >
2094
2095 let php_folding = 1
2096
2097Selecting syncing method: >
2098
2099 let php_sync_method = x
2100
2101x = -1 to sync by search (default),
2102x > 0 to sync at least x lines backwards,
2103x = 0 to sync from start.
2104
2105
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00002106PLAINTEX *plaintex.vim* *ft-plaintex-syntax*
2107
2108TeX is a typesetting language, and plaintex is the file type for the "plain"
2109variant of TeX. If you never want your *.tex files recognized as plain TeX,
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002110see |ft-tex-plugin|.
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00002111
2112This syntax file has the option >
2113
2114 let g:plaintex_delimiters = 1
2115
2116if you want to highlight brackets "[]" and braces "{}".
2117
2118
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002119PPWIZARD *ppwiz.vim* *ft-ppwiz-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120
2121PPWizard is a preprocessor for HTML and OS/2 INF files
2122
2123This syntax file has the options:
2124
2125- ppwiz_highlight_defs : determines highlighting mode for PPWizard's
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002126 definitions. Possible values are
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127
2128 ppwiz_highlight_defs = 1 : PPWizard #define statements retain the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002129 colors of their contents (e.g. PPWizard macros and variables)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130
2131 ppwiz_highlight_defs = 2 : preprocessor #define and #evaluate
2132 statements are shown in a single color with the exception of line
2133 continuation symbols
2134
2135 The default setting for ppwiz_highlight_defs is 1.
2136
2137- ppwiz_with_html : If the value is 1 (the default), highlight literal
2138 HTML code; if 0, treat HTML code like ordinary text.
2139
2140
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002141PHTML *phtml.vim* *ft-phtml-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142
2143There are two options for the phtml syntax highlighting.
2144
2145If you like SQL syntax highlighting inside Strings, use this: >
2146
2147 :let phtml_sql_query = 1
2148
2149For syncing, minlines defaults to 100. If you prefer another value, you can
2150set "phtml_minlines" to the value you desire. Example: >
2151
2152 :let phtml_minlines = 200
2153
2154
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002155POSTSCRIPT *postscr.vim* *ft-postscr-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156
2157There are several options when it comes to highlighting PostScript.
2158
2159First which version of the PostScript language to highlight. There are
2160currently three defined language versions, or levels. Level 1 is the original
2161and base version, and includes all extensions prior to the release of level 2.
2162Level 2 is the most common version around, and includes its own set of
2163extensions prior to the release of level 3. Level 3 is currently the highest
2164level supported. You select which level of the PostScript language you want
2165highlighted by defining the postscr_level variable as follows: >
2166
2167 :let postscr_level=2
2168
2169If this variable is not defined it defaults to 2 (level 2) since this is
2170the most prevalent version currently.
2171
2172Note, not all PS interpreters will support all language features for a
2173particular language level. In particular the %!PS-Adobe-3.0 at the start of
2174PS files does NOT mean the PostScript present is level 3 PostScript!
2175
2176If you are working with Display PostScript, you can include highlighting of
2177Display PS language features by defining the postscr_display variable as
2178follows: >
2179
2180 :let postscr_display=1
2181
2182If you are working with Ghostscript, you can include highlighting of
2183Ghostscript specific language features by defining the variable
2184postscr_ghostscript as follows: >
2185
2186 :let postscr_ghostscript=1
2187
2188PostScript is a large language, with many predefined elements. While it
2189useful to have all these elements highlighted, on slower machines this can
2190cause Vim to slow down. In an attempt to be machine friendly font names and
2191character encodings are not highlighted by default. Unless you are working
2192explicitly with either of these this should be ok. If you want them to be
2193highlighted you should set one or both of the following variables: >
2194
2195 :let postscr_fonts=1
2196 :let postscr_encodings=1
2197
2198There is a stylistic option to the highlighting of and, or, and not. In
2199PostScript the function of these operators depends on the types of their
2200operands - if the operands are booleans then they are the logical operators,
2201if they are integers then they are binary operators. As binary and logical
2202operators can be highlighted differently they have to be highlighted one way
2203or the other. By default they are treated as logical operators. They can be
2204highlighted as binary operators by defining the variable
2205postscr_andornot_binary as follows: >
2206
2207 :let postscr_andornot_binary=1
2208<
2209
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002210 *ptcap.vim* *ft-printcap-syntax*
2211PRINTCAP + TERMCAP *ft-ptcap-syntax* *ft-termcap-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212
2213This syntax file applies to the printcap and termcap databases.
2214
2215In order for Vim to recognize printcap/termcap files that do not match
2216the patterns *printcap*, or *termcap*, you must put additional patterns
2217appropriate to your system in your |myfiletypefile| file. For these
2218patterns, you must set the variable "b:ptcap_type" to either "print" or
2219"term", and then the 'filetype' option to ptcap.
2220
2221For example, to make Vim identify all files in /etc/termcaps/ as termcap
2222files, add the following: >
2223
2224 :au BufNewFile,BufRead /etc/termcaps/* let b:ptcap_type = "term" |
2225 \ set filetype=ptcap
2226
2227If you notice highlighting errors while scrolling backwards, which
2228are fixed when redrawing with CTRL-L, try setting the "ptcap_minlines"
2229internal variable to a larger number: >
2230
2231 :let ptcap_minlines = 50
2232
2233(The default is 20 lines.)
2234
2235
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002236PROGRESS *progress.vim* *ft-progress-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237
2238Files matching "*.w" could be Progress or cweb. If the automatic detection
2239doesn't work for you, or you don't edit cweb at all, use this in your
2240startup vimrc: >
2241 :let filetype_w = "progress"
2242The same happens for "*.i", which could be assembly, and "*.p", which could be
2243Pascal. Use this if you don't use assembly and Pascal: >
2244 :let filetype_i = "progress"
2245 :let filetype_p = "progress"
2246
2247
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002248PYTHON *python.vim* *ft-python-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249
2250There are four options to control Python syntax highlighting.
2251
2252For highlighted numbers: >
2253 :let python_highlight_numbers = 1
2254
2255For highlighted builtin functions: >
2256 :let python_highlight_builtins = 1
2257
2258For highlighted standard exceptions: >
2259 :let python_highlight_exceptions = 1
2260
2261For highlighted trailing whitespace and mix of spaces and tabs:
2262 :let python_highlight_space_errors = 1
2263
2264If you want all possible Python highlighting (the same as setting the
2265preceding three options): >
2266 :let python_highlight_all = 1
2267
2268
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002269QUAKE *quake.vim* *ft-quake-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270
2271The Quake syntax definition should work for most any FPS (First Person
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002272Shooter) based on one of the Quake engines. However, the command names vary
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273a bit between the three games (Quake, Quake 2, and Quake 3 Arena) so the
2274syntax definition checks for the existence of three global variables to allow
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002275users to specify what commands are legal in their files. The three variables
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276can be set for the following effects:
2277
2278set to highlight commands only available in Quake: >
2279 :let quake_is_quake1 = 1
2280
2281set to highlight commands only available in Quake 2: >
2282 :let quake_is_quake2 = 1
2283
2284set to highlight commands only available in Quake 3 Arena: >
2285 :let quake_is_quake3 = 1
2286
2287Any combination of these three variables is legal, but might highlight more
2288commands than are actually available to you by the game.
2289
2290
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002291READLINE *readline.vim* *ft-readline-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292
2293The readline library is primarily used by the BASH shell, which adds quite a
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002294few commands and options to the ones already available. To highlight these
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295items as well you can add the following to your |vimrc| or just type it in the
2296command line before loading a file with the readline syntax: >
2297 let readline_has_bash = 1
2298
2299This will add highlighting for the commands that BASH (version 2.05a and
2300later, and part earlier) adds.
2301
2302
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002303REXX *rexx.vim* *ft-rexx-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304
2305If you notice highlighting errors while scrolling backwards, which are fixed
2306when redrawing with CTRL-L, try setting the "rexx_minlines" internal variable
2307to a larger number: >
2308 :let rexx_minlines = 50
2309This will make the syntax synchronization start 50 lines before the first
2310displayed line. The default value is 10. The disadvantage of using a larger
2311number is that redrawing can become slow.
2312
2313
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002314RUBY *ruby.vim* *ft-ruby-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002316There are a number of options to the Ruby syntax highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317
2318By default, the "end" keyword is colorized according to the opening statement
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002319of the block it closes. While useful, this feature can be expensive; if you
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320experience slow redrawing (or you are on a terminal with poor color support)
2321you may want to turn it off by defining the "ruby_no_expensive" variable: >
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002322
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 :let ruby_no_expensive = 1
Bram Moolenaar25394022007-05-10 19:06:20 +00002324<
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325In this case the same color will be used for all control keywords.
2326
2327If you do want this feature enabled, but notice highlighting errors while
2328scrolling backwards, which are fixed when redrawing with CTRL-L, try setting
2329the "ruby_minlines" variable to a value larger than 50: >
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002330
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 :let ruby_minlines = 100
Bram Moolenaar25394022007-05-10 19:06:20 +00002332<
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333Ideally, this value should be a number of lines large enough to embrace your
2334largest class or module.
2335
Bram Moolenaar25394022007-05-10 19:06:20 +00002336Highlighting of special identifiers can be disabled by removing the
2337rubyIdentifier highlighting: >
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002338
Bram Moolenaar25394022007-05-10 19:06:20 +00002339 :hi link rubyIdentifier NONE
2340<
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341This will prevent highlighting of special identifiers like "ConstantName",
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002342"$global_var", "@@class_var", "@instance_var", "| block_param |", and
2343":symbol".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002345Significant methods of Kernel, Module and Object are highlighted by default.
2346This can be disabled by defining "ruby_no_special_methods": >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002348 :let ruby_no_special_methods = 1
Bram Moolenaar25394022007-05-10 19:06:20 +00002349<
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002350This will prevent highlighting of important methods such as "require", "attr",
2351"private", "raise" and "proc".
2352
Bram Moolenaar25394022007-05-10 19:06:20 +00002353Ruby operators can be highlighted. This is enabled by defining
2354"ruby_operators": >
2355
2356 :let ruby_operators = 1
2357<
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002358Whitespace errors can be highlighted by defining "ruby_space_errors": >
2359
2360 :let ruby_space_errors = 1
Bram Moolenaar25394022007-05-10 19:06:20 +00002361<
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002362This will highlight trailing whitespace and tabs preceded by a space character
2363as errors. This can be refined by defining "ruby_no_trail_space_error" and
2364"ruby_no_tab_space_error" which will ignore trailing whitespace and tabs after
2365spaces respectively.
2366
2367Folding can be enabled by defining "ruby_fold": >
2368
2369 :let ruby_fold = 1
Bram Moolenaar25394022007-05-10 19:06:20 +00002370<
Bram Moolenaar943d2b52005-12-02 00:50:49 +00002371This will set the 'foldmethod' option to "syntax" and allow folding of
2372classes, modules, methods, code blocks, heredocs and comments.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00002373
Bram Moolenaar25394022007-05-10 19:06:20 +00002374Folding of multiline comments can be disabled by defining
2375"ruby_no_comment_fold": >
2376
2377 :let ruby_no_comment_fold = 1
2378<
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00002379
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002380SCHEME *scheme.vim* *ft-scheme-syntax*
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002381
2382By default only R5RS keywords are highlighted and properly indented.
2383
2384MzScheme-specific stuff will be used if b:is_mzscheme or g:is_mzscheme
2385variables are defined.
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002386
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002387Also scheme.vim supports keywords of the Chicken Scheme->C compiler. Define
2388b:is_chicken or g:is_chicken, if you need them.
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002389
2390
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002391SDL *sdl.vim* *ft-sdl-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392
2393The SDL highlighting probably misses a few keywords, but SDL has so many
2394of them it's almost impossibly to cope.
2395
2396The new standard, SDL-2000, specifies that all identifiers are
2397case-sensitive (which was not so before), and that all keywords can be
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002398used either completely lowercase or completely uppercase. To have the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399highlighting reflect this, you can set the following variable: >
2400 :let sdl_2000=1
2401
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002402This also sets many new keywords. If you want to disable the old
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403keywords, which is probably a good idea, use: >
2404 :let SDL_no_96=1
2405
2406
2407The indentation is probably also incomplete, but right now I am very
2408satisfied with it for my own projects.
2409
2410
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002411SED *sed.vim* *ft-sed-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412
2413To make tabs stand out from regular blanks (accomplished by using Todo
2414highlighting on the tabs), define "highlight_sedtabs" by putting >
2415
2416 :let highlight_sedtabs = 1
2417
2418in the vimrc file. (This special highlighting only applies for tabs
2419inside search patterns, replacement texts, addresses or text included
2420by an Append/Change/Insert command.) If you enable this option, it is
2421also a good idea to set the tab width to one character; by doing that,
2422you can easily count the number of tabs in a string.
2423
2424Bugs:
2425
2426 The transform command (y) is treated exactly like the substitute
2427 command. This means that, as far as this syntax file is concerned,
2428 transform accepts the same flags as substitute, which is wrong.
2429 (Transform accepts no flags.) I tolerate this bug because the
2430 involved commands need very complex treatment (95 patterns, one for
2431 each plausible pattern delimiter).
2432
2433
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002434SGML *sgml.vim* *ft-sgml-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435
2436The coloring scheme for tags in the SGML file works as follows.
2437
2438The <> of opening tags are colored differently than the </> of a closing tag.
2439This is on purpose! For opening tags the 'Function' color is used, while for
2440closing tags the 'Type' color is used (See syntax.vim to check how those are
2441defined for you)
2442
2443Known tag names are colored the same way as statements in C. Unknown tag
2444names are not colored which makes it easy to spot errors.
2445
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002446Note that the same is true for argument (or attribute) names. Known attribute
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447names are colored differently than unknown ones.
2448
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002449Some SGML tags are used to change the rendering of text. The following tags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450are recognized by the sgml.vim syntax coloring file and change the way normal
2451text is shown: <varname> <emphasis> <command> <function> <literal>
2452<replaceable> <ulink> and <link>.
2453
2454If you want to change how such text is rendered, you must redefine the
2455following syntax groups:
2456
2457 - sgmlBold
2458 - sgmlBoldItalic
2459 - sgmlUnderline
2460 - sgmlItalic
2461 - sgmlLink for links
2462
2463To make this redefinition work you must redefine them all and define the
2464following variable in your vimrc (this is due to the order in which the files
2465are read during initialization) >
2466 let sgml_my_rendering=1
2467
2468You can also disable this rendering by adding the following line to your
2469vimrc file: >
2470 let sgml_no_rendering=1
2471
2472(Adapted from the html.vim help text by Claudio Fleiner <claudio@fleiner.com>)
2473
2474
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002475SH *sh.vim* *ft-sh-syntax* *ft-bash-syntax* *ft-ksh-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002477This covers the "normal" Unix (Bourne) sh, bash and the Korn shell.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478
2479Vim attempts to determine which shell type is in use by specifying that
2480various filenames are of specific types: >
2481
2482 ksh : .kshrc* *.ksh
2483 bash: .bashrc* bashrc bash.bashrc .bash_profile* *.bash
2484<
2485If none of these cases pertain, then the first line of the file is examined
2486(ex. /bin/sh /bin/ksh /bin/bash). If the first line specifies a shelltype,
2487then that shelltype is used. However some files (ex. .profile) are known to
2488be shell files but the type is not apparent. Furthermore, on many systems
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00002489sh is symbolically linked to "bash" (Linux, Windows+cygwin) or "ksh" (Posix).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490
2491One may specify a global default by instantiating one of the following three
2492variables in your <.vimrc>:
2493
2494 ksh: >
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00002495 let g:is_kornshell = 1
2496< posix: (using this is the same as setting is_kornshell to 1) >
2497 let g:is_posix = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498< bash: >
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00002499 let g:is_bash = 1
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002500< sh: (default) Bourne shell >
Bram Moolenaar7fc904b2006-04-13 20:37:35 +00002501 let g:is_sh = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002503If there's no "#! ..." line, and the user hasn't availed himself/herself of a
2504default sh.vim syntax setting as just shown, then syntax/sh.vim will assume
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002505the Bourne shell syntax. No need to quote RFCs or market penetration
2506statistics in error reports, please -- just select the default version of the
2507sh your system uses in your <.vimrc>.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002508
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002509The syntax/sh.vim file provides several levels of syntax-based folding: >
2510
2511 let g:sh_fold_enabled= 0 (default, no syntax folding)
2512 let g:sh_fold_enabled= 1 (enable function folding)
2513 let g:sh_fold_enabled= 2 (enable heredoc folding)
2514 let g:sh_fold_enabled= 4 (enable if/do/for folding)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515>
2516then various syntax items (HereDocuments and function bodies) become
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002517syntax-foldable (see |:syn-fold|). You also may add these together
2518to get multiple types of folding: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002520 let g:sh_fold_enabled= 3 (enables function and heredoc folding)
2521
2522If you notice highlighting errors while scrolling backwards which are fixed
2523when one redraws with CTRL-L, try setting the "sh_minlines" internal variable
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524to a larger number. Example: >
2525
2526 let sh_minlines = 500
2527
2528This will make syntax synchronization start 500 lines before the first
2529displayed line. The default value is 200. The disadvantage of using a larger
2530number is that redrawing can become slow.
2531
2532If you don't have much to synchronize on, displaying can be very slow. To
2533reduce this, the "sh_maxlines" internal variable can be set. Example: >
2534
2535 let sh_maxlines = 100
2536<
2537The default is to use the twice sh_minlines. Set it to a smaller number to
2538speed up displaying. The disadvantage is that highlight errors may appear.
2539
2540
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002541SPEEDUP (AspenTech plant simulator) *spup.vim* *ft-spup-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542
2543The Speedup syntax file has some options:
2544
2545- strict_subsections : If this variable is defined, only keywords for
2546 sections and subsections will be highlighted as statements but not
2547 other keywords (like WITHIN in the OPERATION section).
2548
2549- highlight_types : Definition of this variable causes stream types
2550 like temperature or pressure to be highlighted as Type, not as a
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002551 plain Identifier. Included are the types that are usually found in
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 the DECLARE section; if you defined own types, you have to include
2553 them in the syntax file.
2554
2555- oneline_comments : this value ranges from 1 to 3 and determines the
2556 highlighting of # style comments.
2557
2558 oneline_comments = 1 : allow normal Speedup code after an even
2559 number of #s.
2560
2561 oneline_comments = 2 : show code starting with the second # as
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002562 error. This is the default setting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563
2564 oneline_comments = 3 : show the whole line as error if it contains
2565 more than one #.
2566
2567Since especially OPERATION sections tend to become very large due to
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002568PRESETting variables, syncing may be critical. If your computer is
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569fast enough, you can increase minlines and/or maxlines near the end of
2570the syntax file.
2571
2572
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002573SQL *sql.vim* *ft-sql-syntax*
2574 *sqlinformix.vim* *ft-sqlinformix-syntax*
Bram Moolenaar1056d982006-03-09 22:37:52 +00002575 *sqlanywhere.vim* *ft-sqlanywhere-syntax*
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002576
Bram Moolenaar1056d982006-03-09 22:37:52 +00002577While there is an ANSI standard for SQL, most database engines add their own
2578custom extensions. Vim currently supports the Oracle and Informix dialects of
2579SQL. Vim assumes "*.sql" files are Oracle SQL by default.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002580
Bram Moolenaar1056d982006-03-09 22:37:52 +00002581Vim currently has SQL support for a variety of different vendors via syntax
2582scripts. You can change Vim's default from Oracle to any of the current SQL
2583supported types. You can also easily alter the SQL dialect being used on a
2584buffer by buffer basis.
2585
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002586For more detailed instructions see |ft_sql.txt|.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002587
2588
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002589TCSH *tcsh.vim* *ft-tcsh-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590
2591This covers the shell named "tcsh". It is a superset of csh. See |csh.vim|
2592for how the filetype is detected.
2593
2594Tcsh does not allow \" in strings unless the "backslash_quote" shell variable
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002595is set. If you want VIM to assume that no backslash quote constructs exist add
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596this line to your .vimrc: >
2597
2598 :let tcsh_backslash_quote = 0
2599
2600If you notice highlighting errors while scrolling backwards, which are fixed
2601when redrawing with CTRL-L, try setting the "tcsh_minlines" internal variable
2602to a larger number: >
2603
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01002604 :let tcsh_minlines = 1000
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01002606This will make the syntax synchronization start 1000 lines before the first
2607displayed line. If you set "tcsh_minlines" to "fromstart", then
2608synchronization is done from the start of the file. The default value for
2609tcsh_minlines is 100. The disadvantage of using a larger number is that
2610redrawing can become slow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611
2612
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002613TEX *tex.vim* *ft-tex-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002615 *tex-folding*
Bram Moolenaar488c6512005-08-11 20:09:58 +00002616Want Syntax Folding? ~
2617
2618As of version 28 of <syntax/tex.vim>, syntax-based folding of parts, chapters,
2619sections, subsections, etc are supported. Put >
2620 let g:tex_fold_enabled=1
2621in your <.vimrc>, and :set fdm=syntax. I suggest doing the latter via a
2622modeline at the end of your LaTeX file: >
2623 % vim: fdm=syntax
2624<
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002625 *tex-nospell*
2626Don't Want Spell Checking In Comments? ~
2627
2628Some folks like to include things like source code in comments and so would
2629prefer that spell checking be disabled in comments in LaTeX files. To do
2630this, put the following in your <.vimrc>: >
2631 let g:tex_comment_nospell= 1
2632<
Bram Moolenaar74cbdf02010-08-04 23:03:17 +02002633 *tex-verb*
2634Want Spell Checking in Verbatim Zones?~
2635
2636Often verbatim regions are used for things like source code; seldom does
2637one want source code spell-checked. However, for those of you who do
2638want your verbatim zones spell-checked, put the following in your <.vimrc>: >
2639 let g:tex_verbspell= 1
2640
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002641 *tex-runon*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642Run-on Comments/Math? ~
2643
Bram Moolenaar488c6512005-08-11 20:09:58 +00002644The <syntax/tex.vim> highlighting supports TeX, LaTeX, and some AmsTeX. The
2645highlighting supports three primary zones/regions: normal, texZone, and
2646texMathZone. Although considerable effort has been made to have these zones
2647terminate properly, zones delineated by $..$ and $$..$$ cannot be synchronized
2648as there's no difference between start and end patterns. Consequently, a
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649special "TeX comment" has been provided >
2650 %stopzone
2651which will forcibly terminate the highlighting of either a texZone or a
2652texMathZone.
2653
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002654 *tex-slow*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655Slow Syntax Highlighting? ~
2656
2657If you have a slow computer, you may wish to reduce the values for >
2658 :syn sync maxlines=200
2659 :syn sync minlines=50
2660(especially the latter). If your computer is fast, you may wish to
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002661increase them. This primarily affects synchronizing (i.e. just what group,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662if any, is the text at the top of the screen supposed to be in?).
2663
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002664 *tex-morecommands* *tex-package*
2665Want To Highlight More Commands? ~
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00002666
2667LaTeX is a programmable language, and so there are thousands of packages full
2668of specialized LaTeX commands, syntax, and fonts. If you're using such a
2669package you'll often wish that the distributed syntax/tex.vim would support
2670it. However, clearly this is impractical. So please consider using the
2671techniques in |mysyntaxfile-add| to extend or modify the highlighting provided
2672by syntax/tex.vim.
2673
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002674 *tex-error*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675Excessive Error Highlighting? ~
2676
2677The <tex.vim> supports lexical error checking of various sorts. Thus,
2678although the error checking is ofttimes very useful, it can indicate
2679errors where none actually are. If this proves to be a problem for you,
2680you may put in your <.vimrc> the following statement: >
2681 let tex_no_error=1
Bram Moolenaar488c6512005-08-11 20:09:58 +00002682and all error checking by <syntax/tex.vim> will be suppressed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002684 *tex-math*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685Need a new Math Group? ~
2686
2687If you want to include a new math group in your LaTeX, the following
2688code shows you an example as to how you might do so: >
Bram Moolenaar488c6512005-08-11 20:09:58 +00002689 call TexNewMathZone(sfx,mathzone,starform)
2690You'll want to provide the new math group with a unique suffix
2691(currently, A-L and V-Z are taken by <syntax/tex.vim> itself).
2692As an example, consider how eqnarray is set up by <syntax/tex.vim>: >
2693 call TexNewMathZone("D","eqnarray",1)
2694You'll need to change "mathzone" to the name of your new math group,
2695and then to the call to it in .vim/after/syntax/tex.vim.
2696The "starform" variable, if true, implies that your new math group
2697has a starred form (ie. eqnarray*).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002699 *tex-style*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700Starting a New Style? ~
2701
2702One may use "\makeatletter" in *.tex files, thereby making the use of "@" in
2703commands available. However, since the *.tex file doesn't have one of the
2704following suffices: sty cls clo dtx ltx, the syntax highlighting will flag
2705such use of @ as an error. To solve this: >
2706
2707 :let b:tex_stylish = 1
2708 :set ft=tex
2709
2710Putting "let g:tex_stylish=1" into your <.vimrc> will make <syntax/tex.vim>
2711always accept such use of @.
2712
Bram Moolenaar611df5b2010-07-26 22:51:56 +02002713 *tex-cchar* *tex-cole* *tex-conceal*
2714Taking Advantage of Conceal Mode~
2715
Bram Moolenaar477db062010-07-28 18:17:41 +02002716If you have |'conceallevel'| set to 2 and if your encoding is utf-8, then a
2717number of character sequences can be translated into appropriate utf-8 glyphs,
2718including various accented characters, Greek characters in MathZones, and
2719superscripts and subscripts in MathZones. Not all characters can be made into
2720superscripts or subscripts; the constraint is due to what utf-8 supports.
2721In fact, only a few characters are supported as subscripts.
2722
2723One way to use this is to have vertically split windows (see |CTRL-W_v|); one
2724with |'conceallevel'| at 0 and the other at 2; and both using |'scrollbind'|.
Bram Moolenaar611df5b2010-07-26 22:51:56 +02002725
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002727TF *tf.vim* *ft-tf-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728
2729There is one option for the tf syntax highlighting.
2730
2731For syncing, minlines defaults to 100. If you prefer another value, you can
2732set "tf_minlines" to the value you desire. Example: >
2733
2734 :let tf_minlines = your choice
2735
2736
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002737VIM *vim.vim* *ft-vim-syntax*
2738 *g:vimsyn_minlines* *g:vimsyn_maxlines*
Bram Moolenaar996343d2010-07-04 22:20:21 +02002739There is a trade-off between more accurate syntax highlighting versus screen
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002740updating speed. To improve accuracy, you may wish to increase the
2741g:vimsyn_minlines variable. The g:vimsyn_maxlines variable may be used to
2742improve screen updating rates (see |:syn-sync| for more on this). >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002744 g:vimsyn_minlines : used to set synchronization minlines
2745 g:vimsyn_maxlines : used to set synchronization maxlines
2746<
2747 (g:vim_minlines and g:vim_maxlines are deprecated variants of
2748 these two options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002750 *g:vimsyn_embed*
2751The g:vimsyn_embed option allows users to select what, if any, types of
2752embedded script highlighting they wish to have. >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002754 g:vimsyn_embed == 0 : don't embed any scripts
2755 g:vimsyn_embed =~ 'm' : embed mzscheme (but only if vim supports it)
2756 g:vimsyn_embed =~ 'p' : embed perl (but only if vim supports it)
2757 g:vimsyn_embed =~ 'P' : embed python (but only if vim supports it)
2758 g:vimsyn_embed =~ 'r' : embed ruby (but only if vim supports it)
2759 g:vimsyn_embed =~ 't' : embed tcl (but only if vim supports it)
2760<
2761By default, g:vimsyn_embed is "mpPr"; ie. syntax/vim.vim will support
2762highlighting mzscheme, perl, python, and ruby by default. Vim's has("tcl")
2763test appears to hang vim when tcl is not truly available. Thus, by default,
2764tcl is not supported for embedding (but those of you who like tcl embedded in
2765their vim syntax highlighting can simply include it in the g:vimembedscript
2766option).
2767 *g:vimsyn_folding*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002769Some folding is now supported with syntax/vim.vim: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002771 g:vimsyn_folding == 0 or doesn't exist: no syntax-based folding
2772 g:vimsyn_folding =~ 'a' : augroups
2773 g:vimsyn_folding =~ 'f' : fold functions
2774 g:vimsyn_folding =~ 'm' : fold mzscheme script
2775 g:vimsyn_folding =~ 'p' : fold perl script
2776 g:vimsyn_folding =~ 'P' : fold python script
2777 g:vimsyn_folding =~ 'r' : fold ruby script
2778 g:vimsyn_folding =~ 't' : fold tcl script
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002780 *g:vimsyn_noerror*
Bram Moolenaar437df8f2006-04-27 21:47:44 +00002781Not all error highlighting that syntax/vim.vim does may be correct; VimL is a
2782difficult language to highlight correctly. A way to suppress error
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002783highlighting is to put the following line in your |vimrc|: >
Bram Moolenaar437df8f2006-04-27 21:47:44 +00002784
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002785 let g:vimsyn_noerror = 1
2786<
Bram Moolenaar437df8f2006-04-27 21:47:44 +00002787
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002789XF86CONFIG *xf86conf.vim* *ft-xf86conf-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790
2791The syntax of XF86Config file differs in XFree86 v3.x and v4.x. Both
2792variants are supported. Automatic detection is used, but is far from perfect.
2793You may need to specify the version manually. Set the variable
2794xf86conf_xfree86_version to 3 or 4 according to your XFree86 version in
2795your .vimrc. Example: >
2796 :let xf86conf_xfree86_version=3
2797When using a mix of versions, set the b:xf86conf_xfree86_version variable.
2798
2799Note that spaces and underscores in option names are not supported. Use
2800"SyncOnGreen" instead of "__s yn con gr_e_e_n" if you want the option name
2801highlighted.
2802
2803
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002804XML *xml.vim* *ft-xml-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002806Xml namespaces are highlighted by default. This can be inhibited by
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807setting a global variable: >
2808
2809 :let g:xml_namespace_transparent=1
2810<
2811 *xml-folding*
2812The xml syntax file provides syntax |folding| (see |:syn-fold|) between
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002813start and end tags. This can be turned on by >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814
2815 :let g:xml_syntax_folding = 1
2816 :set foldmethod=syntax
2817
2818Note: syntax folding might slow down syntax highlighting significantly,
2819especially for large files.
2820
2821
Bram Moolenaarda2303d2005-08-30 21:55:26 +00002822X Pixmaps (XPM) *xpm.vim* *ft-xpm-syntax*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823
2824xpm.vim creates its syntax items dynamically based upon the contents of the
2825XPM file. Thus if you make changes e.g. in the color specification strings,
2826you have to source it again e.g. with ":set syn=xpm".
2827
2828To copy a pixel with one of the colors, yank a "pixel" with "yl" and insert it
2829somewhere else with "P".
2830
2831Do you want to draw with the mouse? Try the following: >
2832 :function! GetPixel()
Bram Moolenaar61660ea2006-04-07 21:40:07 +00002833 : let c = getline(".")[col(".") - 1]
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 : echo c
2835 : exe "noremap <LeftMouse> <LeftMouse>r".c
2836 : exe "noremap <LeftDrag> <LeftMouse>r".c
2837 :endfunction
2838 :noremap <RightMouse> <LeftMouse>:call GetPixel()<CR>
2839 :set guicursor=n:hor20 " to see the color beneath the cursor
2840This turns the right button into a pipette and the left button into a pen.
2841It will work with XPM files that have one character per pixel only and you
2842must not click outside of the pixel strings, but feel free to improve it.
2843
2844It will look much better with a font in a quadratic cell size, e.g. for X: >
2845 :set guifont=-*-clean-medium-r-*-*-8-*-*-*-*-80-*
2846
2847==============================================================================
28485. Defining a syntax *:syn-define* *E410*
2849
2850Vim understands three types of syntax items:
2851
Bram Moolenaarce0842a2005-07-18 21:58:11 +000028521. Keyword
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 It can only contain keyword characters, according to the 'iskeyword'
2854 option. It cannot contain other syntax items. It will only match with a
2855 complete word (there are no keyword characters before or after the match).
2856 The keyword "if" would match in "if(a=b)", but not in "ifdef x", because
2857 "(" is not a keyword character and "d" is.
2858
Bram Moolenaarce0842a2005-07-18 21:58:11 +000028592. Match
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 This is a match with a single regexp pattern.
2861
Bram Moolenaarce0842a2005-07-18 21:58:11 +000028623. Region
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863 This starts at a match of the "start" regexp pattern and ends with a match
2864 with the "end" regexp pattern. Any other text can appear in between. A
2865 "skip" regexp pattern can be used to avoid matching the "end" pattern.
2866
2867Several syntax ITEMs can be put into one syntax GROUP. For a syntax group
2868you can give highlighting attributes. For example, you could have an item
2869to define a "/* .. */" comment and another one that defines a "// .." comment,
2870and put them both in the "Comment" group. You can then specify that a
2871"Comment" will be in bold font and have a blue color. You are free to make
2872one highlight group for one syntax item, or put all items into one group.
2873This depends on how you want to specify your highlighting attributes. Putting
2874each item in its own group results in having to specify the highlighting
2875for a lot of groups.
2876
2877Note that a syntax group and a highlight group are similar. For a highlight
2878group you will have given highlight attributes. These attributes will be used
2879for the syntax group with the same name.
2880
2881In case more than one item matches at the same position, the one that was
2882defined LAST wins. Thus you can override previously defined syntax items by
2883using an item that matches the same text. But a keyword always goes before a
2884match or region. And a keyword with matching case always goes before a
2885keyword with ignoring case.
2886
2887
2888PRIORITY *:syn-priority*
2889
2890When several syntax items may match, these rules are used:
2891
28921. When multiple Match or Region items start in the same position, the item
2893 defined last has priority.
28942. A Keyword has priority over Match and Region items.
28953. An item that starts in an earlier position has priority over items that
2896 start in later positions.
2897
2898
2899DEFINING CASE *:syn-case* *E390*
2900
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002901:sy[ntax] case [match | ignore]
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 This defines if the following ":syntax" commands will work with
2903 matching case, when using "match", or with ignoring case, when using
2904 "ignore". Note that any items before this are not affected, and all
2905 items until the next ":syntax case" command are affected.
2906
2907
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002908SPELL CHECKING *:syn-spell*
2909
2910:sy[ntax] spell [toplevel | notoplevel | default]
2911 This defines where spell checking is to be done for text that is not
2912 in a syntax item:
2913
2914 toplevel: Text is spell checked.
2915 notoplevel: Text is not spell checked.
2916 default: When there is a @Spell cluster no spell checking.
2917
2918 For text in syntax items use the @Spell and @NoSpell clusters
2919 |spell-syntax|. When there is no @Spell and no @NoSpell cluster then
2920 spell checking is done for "default" and "toplevel".
2921
2922 To activate spell checking the 'spell' option must be set.
2923
2924
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925DEFINING KEYWORDS *:syn-keyword*
2926
2927:sy[ntax] keyword {group-name} [{options}] {keyword} .. [{options}]
2928
2929 This defines a number of keywords.
2930
2931 {group-name} Is a syntax group name such as "Comment".
2932 [{options}] See |:syn-arguments| below.
2933 {keyword} .. Is a list of keywords which are part of this group.
2934
2935 Example: >
2936 :syntax keyword Type int long char
2937<
2938 The {options} can be given anywhere in the line. They will apply to
2939 all keywords given, also for options that come after a keyword.
2940 These examples do exactly the same: >
2941 :syntax keyword Type contained int long char
2942 :syntax keyword Type int long contained char
2943 :syntax keyword Type int long char contained
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002944< *E789*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 When you have a keyword with an optional tail, like Ex commands in
2946 Vim, you can put the optional characters inside [], to define all the
2947 variations at once: >
2948 :syntax keyword vimCommand ab[breviate] n[ext]
2949<
2950 Don't forget that a keyword can only be recognized if all the
2951 characters are included in the 'iskeyword' option. If one character
2952 isn't, the keyword will never be recognized.
2953 Multi-byte characters can also be used. These do not have to be in
2954 'iskeyword'.
2955
2956 A keyword always has higher priority than a match or region, the
2957 keyword is used if more than one item matches. Keywords do not nest
2958 and a keyword can't contain anything else.
2959
2960 Note that when you have a keyword that is the same as an option (even
2961 one that isn't allowed here), you can not use it. Use a match
2962 instead.
2963
2964 The maximum length of a keyword is 80 characters.
2965
2966 The same keyword can be defined multiple times, when its containment
2967 differs. For example, you can define the keyword once not contained
2968 and use one highlight group, and once contained, and use a different
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00002969 highlight group. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 :syn keyword vimCommand tag
2971 :syn keyword vimSetting contained tag
2972< When finding "tag" outside of any syntax item, the "vimCommand"
2973 highlight group is used. When finding "tag" in a syntax item that
2974 contains "vimSetting", the "vimSetting" group is used.
2975
2976
2977DEFINING MATCHES *:syn-match*
2978
2979:sy[ntax] match {group-name} [{options}] [excludenl] {pattern} [{options}]
2980
2981 This defines one match.
2982
2983 {group-name} A syntax group name such as "Comment".
2984 [{options}] See |:syn-arguments| below.
2985 [excludenl] Don't make a pattern with the end-of-line "$"
2986 extend a containing match or region. Must be
2987 given before the pattern. |:syn-excludenl|
2988 {pattern} The search pattern that defines the match.
2989 See |:syn-pattern| below.
2990 Note that the pattern may match more than one
2991 line, which makes the match depend on where
2992 Vim starts searching for the pattern. You
2993 need to make sure syncing takes care of this.
2994
2995 Example (match a character constant): >
2996 :syntax match Character /'.'/hs=s+1,he=e-1
2997<
2998
2999DEFINING REGIONS *:syn-region* *:syn-start* *:syn-skip* *:syn-end*
3000 *E398* *E399*
3001:sy[ntax] region {group-name} [{options}]
3002 [matchgroup={group-name}]
3003 [keepend]
3004 [extend]
3005 [excludenl]
3006 start={start_pattern} ..
3007 [skip={skip_pattern}]
3008 end={end_pattern} ..
3009 [{options}]
3010
3011 This defines one region. It may span several lines.
3012
3013 {group-name} A syntax group name such as "Comment".
3014 [{options}] See |:syn-arguments| below.
3015 [matchgroup={group-name}] The syntax group to use for the following
3016 start or end pattern matches only. Not used
3017 for the text in between the matched start and
3018 end patterns. Use NONE to reset to not using
3019 a different group for the start or end match.
3020 See |:syn-matchgroup|.
3021 keepend Don't allow contained matches to go past a
3022 match with the end pattern. See
3023 |:syn-keepend|.
3024 extend Override a "keepend" for an item this region
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003025 is contained in. See |:syn-extend|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 excludenl Don't make a pattern with the end-of-line "$"
3027 extend a containing match or item. Only
3028 useful for end patterns. Must be given before
3029 the patterns it applies to. |:syn-excludenl|
3030 start={start_pattern} The search pattern that defines the start of
3031 the region. See |:syn-pattern| below.
3032 skip={skip_pattern} The search pattern that defines text inside
3033 the region where not to look for the end
3034 pattern. See |:syn-pattern| below.
3035 end={end_pattern} The search pattern that defines the end of
3036 the region. See |:syn-pattern| below.
3037
3038 Example: >
3039 :syntax region String start=+"+ skip=+\\"+ end=+"+
3040<
3041 The start/skip/end patterns and the options can be given in any order.
3042 There can be zero or one skip pattern. There must be one or more
3043 start and end patterns. This means that you can omit the skip
3044 pattern, but you must give at least one start and one end pattern. It
3045 is allowed to have white space before and after the equal sign
3046 (although it mostly looks better without white space).
3047
3048 When more than one start pattern is given, a match with one of these
3049 is sufficient. This means there is an OR relation between the start
3050 patterns. The last one that matches is used. The same is true for
3051 the end patterns.
3052
3053 The search for the end pattern starts right after the start pattern.
3054 Offsets are not used for this. This implies that the match for the
3055 end pattern will never overlap with the start pattern.
3056
3057 The skip and end pattern can match across line breaks, but since the
3058 search for the pattern can start in any line it often does not do what
3059 you want. The skip pattern doesn't avoid a match of an end pattern in
3060 the next line. Use single-line patterns to avoid trouble.
3061
3062 Note: The decision to start a region is only based on a matching start
3063 pattern. There is no check for a matching end pattern. This does NOT
3064 work: >
3065 :syn region First start="(" end=":"
3066 :syn region Second start="(" end=";"
3067< The Second always matches before the First (last defined pattern has
3068 higher priority). The Second region then continues until the next
3069 ';', no matter if there is a ':' before it. Using a match does work: >
3070 :syn match First "(\_.\{-}:"
3071 :syn match Second "(\_.\{-};"
3072< This pattern matches any character or line break with "\_." and
3073 repeats that with "\{-}" (repeat as few as possible).
3074
3075 *:syn-keepend*
3076 By default, a contained match can obscure a match for the end pattern.
3077 This is useful for nesting. For example, a region that starts with
3078 "{" and ends with "}", can contain another region. An encountered "}"
3079 will then end the contained region, but not the outer region:
3080 { starts outer "{}" region
3081 { starts contained "{}" region
3082 } ends contained "{}" region
3083 } ends outer "{} region
3084 If you don't want this, the "keepend" argument will make the matching
3085 of an end pattern of the outer region also end any contained item.
3086 This makes it impossible to nest the same region, but allows for
3087 contained items to highlight parts of the end pattern, without causing
3088 that to skip the match with the end pattern. Example: >
3089 :syn match vimComment +"[^"]\+$+
3090 :syn region vimCommand start="set" end="$" contains=vimComment keepend
3091< The "keepend" makes the vimCommand always end at the end of the line,
3092 even though the contained vimComment includes a match with the <EOL>.
3093
3094 When "keepend" is not used, a match with an end pattern is retried
3095 after each contained match. When "keepend" is included, the first
3096 encountered match with an end pattern is used, truncating any
3097 contained matches.
3098 *:syn-extend*
3099 The "keepend" behavior can be changed by using the "extend" argument.
3100 When an item with "extend" is contained in an item that uses
3101 "keepend", the "keepend" is ignored and the containing region will be
3102 extended.
3103 This can be used to have some contained items extend a region while
3104 others don't. Example: >
3105
3106 :syn region htmlRef start=+<a>+ end=+</a>+ keepend contains=htmlItem,htmlScript
3107 :syn match htmlItem +<[^>]*>+ contained
3108 :syn region htmlScript start=+<script+ end=+</script[^>]*>+ contained extend
3109
3110< Here the htmlItem item does not make the htmlRef item continue
3111 further, it is only used to highlight the <> items. The htmlScript
3112 item does extend the htmlRef item.
3113
3114 Another example: >
3115 :syn region xmlFold start="<a>" end="</a>" fold transparent keepend extend
3116< This defines a region with "keepend", so that its end cannot be
3117 changed by contained items, like when the "</a>" is matched to
3118 highlight it differently. But when the xmlFold region is nested (it
3119 includes itself), the "extend" applies, so that the "</a>" of a nested
3120 region only ends that region, and not the one it is contained in.
3121
3122 *:syn-excludenl*
3123 When a pattern for a match or end pattern of a region includes a '$'
3124 to match the end-of-line, it will make a region item that it is
3125 contained in continue on the next line. For example, a match with
3126 "\\$" (backslash at the end of the line) can make a region continue
3127 that would normally stop at the end of the line. This is the default
3128 behavior. If this is not wanted, there are two ways to avoid it:
3129 1. Use "keepend" for the containing item. This will keep all
3130 contained matches from extending the match or region. It can be
3131 used when all contained items must not extend the containing item.
3132 2. Use "excludenl" in the contained item. This will keep that match
3133 from extending the containing match or region. It can be used if
3134 only some contained items must not extend the containing item.
3135 "excludenl" must be given before the pattern it applies to.
3136
3137 *:syn-matchgroup*
3138 "matchgroup" can be used to highlight the start and/or end pattern
3139 differently than the body of the region. Example: >
3140 :syntax region String matchgroup=Quote start=+"+ skip=+\\"+ end=+"+
3141< This will highlight the quotes with the "Quote" group, and the text in
3142 between with the "String" group.
3143 The "matchgroup" is used for all start and end patterns that follow,
3144 until the next "matchgroup". Use "matchgroup=NONE" to go back to not
3145 using a matchgroup.
3146
3147 In a start or end pattern that is highlighted with "matchgroup" the
3148 contained items of the region are not used. This can be used to avoid
3149 that a contained item matches in the start or end pattern match. When
3150 using "transparent", this does not apply to a start or end pattern
3151 match that is highlighted with "matchgroup".
3152
3153 Here is an example, which highlights three levels of parentheses in
3154 different colors: >
3155 :sy region par1 matchgroup=par1 start=/(/ end=/)/ contains=par2
3156 :sy region par2 matchgroup=par2 start=/(/ end=/)/ contains=par3 contained
3157 :sy region par3 matchgroup=par3 start=/(/ end=/)/ contains=par1 contained
3158 :hi par1 ctermfg=red guifg=red
3159 :hi par2 ctermfg=blue guifg=blue
3160 :hi par3 ctermfg=darkgreen guifg=darkgreen
3161
3162==============================================================================
31636. :syntax arguments *:syn-arguments*
3164
3165The :syntax commands that define syntax items take a number of arguments.
3166The common ones are explained here. The arguments may be given in any order
3167and may be mixed with patterns.
3168
3169Not all commands accept all arguments. This table shows which arguments
3170can not be used for all commands:
3171 *E395* *E396*
Bram Moolenaar860cae12010-06-05 23:22:07 +02003172 contains oneline fold display extend concealends~
3173:syntax keyword - - - - - -
3174:syntax match yes - yes yes yes -
3175:syntax region yes yes yes yes yes yes
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176
3177These arguments can be used for all three commands:
Bram Moolenaar860cae12010-06-05 23:22:07 +02003178 conceal
3179 cchar
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 contained
3181 containedin
3182 nextgroup
3183 transparent
3184 skipwhite
3185 skipnl
3186 skipempty
3187
Bram Moolenaar860cae12010-06-05 23:22:07 +02003188conceal *conceal* *:syn-conceal*
3189
3190When the "conceal" argument is given, the item is marked as concealable.
Bram Moolenaar370df582010-06-22 05:16:38 +02003191Whether or not it is actually concealed depends on the value of the
Bram Moolenaarf5963f72010-07-23 22:10:27 +02003192'conceallevel' option. The 'concealcursor' option is used to decide whether
3193concealable items in the current line are displayed unconcealed to be able to
3194edit the line.
Bram Moolenaar860cae12010-06-05 23:22:07 +02003195
3196concealends *:syn-concealends*
3197
3198When the "concealends" argument is given, the start and end matches of
3199the region, but not the contents of the region, are marked as concealable.
3200Whether or not they are actually concealed depends on the setting on the
3201'conceallevel' option. The ends of a region can only be concealed separately
3202in this way when they have their own highlighting via "matchgroup"
3203
3204cchar *:syn-cchar*
3205
3206The "cchar" argument defines the character shown in place of the item
3207when it is concealed (setting "cchar" only makes sense when the conceal
3208argument is given.) If "cchar" is not set then the default conceal
3209character defined in the 'listchars' option is used. Example: >
3210 :syntax match Entity "&amp;" conceal cchar=&
Bram Moolenaar9028b102010-07-11 16:58:51 +02003211See |hl-Conceal| for highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212
3213contained *:syn-contained*
3214
3215When the "contained" argument is given, this item will not be recognized at
3216the top level, but only when it is mentioned in the "contains" field of
3217another match. Example: >
3218 :syntax keyword Todo TODO contained
3219 :syntax match Comment "//.*" contains=Todo
3220
3221
3222display *:syn-display*
3223
3224If the "display" argument is given, this item will be skipped when the
3225detected highlighting will not be displayed. This will speed up highlighting,
3226by skipping this item when only finding the syntax state for the text that is
3227to be displayed.
3228
3229Generally, you can use "display" for match and region items that meet these
3230conditions:
3231- The item does not continue past the end of a line. Example for C: A region
3232 for a "/*" comment can't contain "display", because it continues on the next
3233 line.
3234- The item does not contain items that continue past the end of the line or
3235 make it continue on the next line.
3236- The item does not change the size of any item it is contained in. Example
3237 for C: A match with "\\$" in a preprocessor match can't have "display",
3238 because it may make that preprocessor match shorter.
3239- The item does not allow other items to match that didn't match otherwise,
3240 and that item may extend the match too far. Example for C: A match for a
3241 "//" comment can't use "display", because a "/*" inside that comment would
3242 match then and start a comment which extends past the end of the line.
3243
3244Examples, for the C language, where "display" can be used:
3245- match with a number
3246- match with a label
3247
3248
3249transparent *:syn-transparent*
3250
3251If the "transparent" argument is given, this item will not be highlighted
3252itself, but will take the highlighting of the item it is contained in. This
3253is useful for syntax items that don't need any highlighting but are used
3254only to skip over a part of the text.
3255
3256The "contains=" argument is also inherited from the item it is contained in,
3257unless a "contains" argument is given for the transparent item itself. To
3258avoid that unwanted items are contained, use "contains=NONE". Example, which
3259highlights words in strings, but makes an exception for "vim": >
3260 :syn match myString /'[^']*'/ contains=myWord,myVim
3261 :syn match myWord /\<[a-z]*\>/ contained
3262 :syn match myVim /\<vim\>/ transparent contained contains=NONE
3263 :hi link myString String
3264 :hi link myWord Comment
3265Since the "myVim" match comes after "myWord" it is the preferred match (last
3266match in the same position overrules an earlier one). The "transparent"
3267argument makes the "myVim" match use the same highlighting as "myString". But
3268it does not contain anything. If the "contains=NONE" argument would be left
3269out, then "myVim" would use the contains argument from myString and allow
3270"myWord" to be contained, which will be highlighted as a Constant. This
3271happens because a contained match doesn't match inside itself in the same
3272position, thus the "myVim" match doesn't overrule the "myWord" match here.
3273
3274When you look at the colored text, it is like looking at layers of contained
3275items. The contained item is on top of the item it is contained in, thus you
3276see the contained item. When a contained item is transparent, you can look
3277through, thus you see the item it is contained in. In a picture:
3278
3279 look from here
3280
3281 | | | | | |
3282 V V V V V V
3283
3284 xxxx yyy more contained items
3285 .................... contained item (transparent)
3286 ============================= first item
3287
3288The 'x', 'y' and '=' represent a highlighted syntax item. The '.' represent a
3289transparent group.
3290
3291What you see is:
3292
3293 =======xxxx=======yyy========
3294
3295Thus you look through the transparent "....".
3296
3297
3298oneline *:syn-oneline*
3299
3300The "oneline" argument indicates that the region does not cross a line
3301boundary. It must match completely in the current line. However, when the
3302region has a contained item that does cross a line boundary, it continues on
3303the next line anyway. A contained item can be used to recognize a line
3304continuation pattern. But the "end" pattern must still match in the first
3305line, otherwise the region doesn't even start.
3306
3307When the start pattern includes a "\n" to match an end-of-line, the end
3308pattern must be found in the same line as where the start pattern ends. The
3309end pattern may also include an end-of-line. Thus the "oneline" argument
3310means that the end of the start pattern and the start of the end pattern must
3311be within one line. This can't be changed by a skip pattern that matches a
3312line break.
3313
3314
3315fold *:syn-fold*
3316
Bram Moolenaar8c8de832008-06-24 22:58:06 +00003317The "fold" argument makes the fold level increase by one for this item.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318Example: >
3319 :syn region myFold start="{" end="}" transparent fold
3320 :syn sync fromstart
3321 :set foldmethod=syntax
3322This will make each {} block form one fold.
3323
3324The fold will start on the line where the item starts, and end where the item
3325ends. If the start and end are within the same line, there is no fold.
3326The 'foldnestmax' option limits the nesting of syntax folds.
3327{not available when Vim was compiled without |+folding| feature}
3328
3329
3330 *:syn-contains* *E405* *E406* *E407* *E408* *E409*
3331contains={groupname},..
3332
3333The "contains" argument is followed by a list of syntax group names. These
3334groups will be allowed to begin inside the item (they may extend past the
3335containing group's end). This allows for recursive nesting of matches and
3336regions. If there is no "contains" argument, no groups will be contained in
3337this item. The group names do not need to be defined before they can be used
3338here.
3339
3340contains=ALL
3341 If the only item in the contains list is "ALL", then all
3342 groups will be accepted inside the item.
3343
3344contains=ALLBUT,{group-name},..
3345 If the first item in the contains list is "ALLBUT", then all
3346 groups will be accepted inside the item, except the ones that
3347 are listed. Example: >
3348 :syntax region Block start="{" end="}" ... contains=ALLBUT,Function
3349
3350contains=TOP
3351 If the first item in the contains list is "TOP", then all
3352 groups will be accepted that don't have the "contained"
3353 argument.
3354contains=TOP,{group-name},..
3355 Like "TOP", but excluding the groups that are listed.
3356
3357contains=CONTAINED
3358 If the first item in the contains list is "CONTAINED", then
3359 all groups will be accepted that have the "contained"
3360 argument.
3361contains=CONTAINED,{group-name},..
3362 Like "CONTAINED", but excluding the groups that are
3363 listed.
3364
3365
3366The {group-name} in the "contains" list can be a pattern. All group names
3367that match the pattern will be included (or excluded, if "ALLBUT" is used).
3368The pattern cannot contain white space or a ','. Example: >
3369 ... contains=Comment.*,Keyw[0-3]
3370The matching will be done at moment the syntax command is executed. Groups
3371that are defined later will not be matched. Also, if the current syntax
3372command defines a new group, it is not matched. Be careful: When putting
3373syntax commands in a file you can't rely on groups NOT being defined, because
3374the file may have been sourced before, and ":syn clear" doesn't remove the
3375group names.
3376
3377The contained groups will also match in the start and end patterns of a
3378region. If this is not wanted, the "matchgroup" argument can be used
3379|:syn-matchgroup|. The "ms=" and "me=" offsets can be used to change the
3380region where contained items do match. Note that this may also limit the
3381area that is highlighted
3382
3383
3384containedin={groupname}... *:syn-containedin*
3385
3386The "containedin" argument is followed by a list of syntax group names. The
3387item will be allowed to begin inside these groups. This works as if the
3388containing item has a "contains=" argument that includes this item.
3389
3390The {groupname}... can be used just like for "contains", as explained above.
3391
3392This is useful when adding a syntax item afterwards. An item can be told to
3393be included inside an already existing item, without changing the definition
3394of that item. For example, to highlight a word in a C comment after loading
3395the C syntax: >
3396 :syn keyword myword HELP containedin=cComment contained
3397Note that "contained" is also used, to avoid that the item matches at the top
3398level.
3399
3400Matches for "containedin" are added to the other places where the item can
3401appear. A "contains" argument may also be added as usual. Don't forget that
3402keywords never contain another item, thus adding them to "containedin" won't
3403work.
3404
3405
3406nextgroup={groupname},.. *:syn-nextgroup*
3407
3408The "nextgroup" argument is followed by a list of syntax group names,
3409separated by commas (just like with "contains", so you can also use patterns).
3410
3411If the "nextgroup" argument is given, the mentioned syntax groups will be
3412tried for a match, after the match or region ends. If none of the groups have
3413a match, highlighting continues normally. If there is a match, this group
3414will be used, even when it is not mentioned in the "contains" field of the
3415current group. This is like giving the mentioned group priority over all
3416other groups. Example: >
3417 :syntax match ccFoobar "Foo.\{-}Bar" contains=ccFoo
3418 :syntax match ccFoo "Foo" contained nextgroup=ccFiller
3419 :syntax region ccFiller start="." matchgroup=ccBar end="Bar" contained
3420
3421This will highlight "Foo" and "Bar" differently, and only when there is a
3422"Bar" after "Foo". In the text line below, "f" shows where ccFoo is used for
3423highlighting, and "bbb" where ccBar is used. >
3424
3425 Foo asdfasd Bar asdf Foo asdf Bar asdf
3426 fff bbb fff bbb
3427
3428Note the use of ".\{-}" to skip as little as possible until the next Bar.
3429when ".*" would be used, the "asdf" in between "Bar" and "Foo" would be
3430highlighted according to the "ccFoobar" group, because the ccFooBar match
3431would include the first "Foo" and the last "Bar" in the line (see |pattern|).
3432
3433
3434skipwhite *:syn-skipwhite*
3435skipnl *:syn-skipnl*
3436skipempty *:syn-skipempty*
3437
3438These arguments are only used in combination with "nextgroup". They can be
3439used to allow the next group to match after skipping some text:
Bram Moolenaardd2a0d82007-05-12 15:07:00 +00003440 skipwhite skip over space and tab characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 skipnl skip over the end of a line
3442 skipempty skip over empty lines (implies a "skipnl")
3443
3444When "skipwhite" is present, the white space is only skipped if there is no
3445next group that matches the white space.
3446
3447When "skipnl" is present, the match with nextgroup may be found in the next
3448line. This only happens when the current item ends at the end of the current
3449line! When "skipnl" is not present, the nextgroup will only be found after
3450the current item in the same line.
3451
3452When skipping text while looking for a next group, the matches for other
3453groups are ignored. Only when no next group matches, other items are tried
3454for a match again. This means that matching a next group and skipping white
3455space and <EOL>s has a higher priority than other items.
3456
3457Example: >
3458 :syn match ifstart "\<if.*" nextgroup=ifline skipwhite skipempty
3459 :syn match ifline "[^ \t].*" nextgroup=ifline skipwhite skipempty contained
3460 :syn match ifline "endif" contained
3461Note that the "[^ \t].*" match matches all non-white text. Thus it would also
3462match "endif". Therefore the "endif" match is put last, so that it takes
3463precedence.
3464Note that this example doesn't work for nested "if"s. You need to add
3465"contains" arguments to make that work (omitted for simplicity of the
3466example).
3467
Bram Moolenaar860cae12010-06-05 23:22:07 +02003468IMPLICIT CONCEAL *:syn-conceal-implicit*
3469
3470:sy[ntax] conceal [on|off]
3471 This defines if the following ":syntax" commands will define keywords,
3472 matches or regions with the "conceal" flag set. After ":syn conceal
3473 on", all subsequent ":syn keyword", ":syn match" or ":syn region"
3474 defined will have the "conceal" flag set implicitly. ":syn conceal
3475 off" returns to the normal state where the "conceal" flag must be
3476 given explicitly.
3477
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478==============================================================================
34797. Syntax patterns *:syn-pattern* *E401* *E402*
3480
3481In the syntax commands, a pattern must be surrounded by two identical
3482characters. This is like it works for the ":s" command. The most common to
3483use is the double quote. But if the pattern contains a double quote, you can
3484use another character that is not used in the pattern. Examples: >
3485 :syntax region Comment start="/\*" end="\*/"
3486 :syntax region String start=+"+ end=+"+ skip=+\\"+
3487
3488See |pattern| for the explanation of what a pattern is. Syntax patterns are
Bram Moolenaar8c8de832008-06-24 22:58:06 +00003489always interpreted like the 'magic' option is set, no matter what the actual
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490value of 'magic' is. And the patterns are interpreted like the 'l' flag is
3491not included in 'cpoptions'. This was done to make syntax files portable and
3492independent of 'compatible' and 'magic' settings.
3493
3494Try to avoid patterns that can match an empty string, such as "[a-z]*".
3495This slows down the highlighting a lot, because it matches everywhere.
3496
3497 *:syn-pattern-offset*
3498The pattern can be followed by a character offset. This can be used to
3499change the highlighted part, and to change the text area included in the
3500match or region (which only matters when trying to match other items). Both
3501are relative to the matched pattern. The character offset for a skip
3502pattern can be used to tell where to continue looking for an end pattern.
3503
3504The offset takes the form of "{what}={offset}"
3505The {what} can be one of seven strings:
3506
3507ms Match Start offset for the start of the matched text
3508me Match End offset for the end of the matched text
3509hs Highlight Start offset for where the highlighting starts
3510he Highlight End offset for where the highlighting ends
3511rs Region Start offset for where the body of a region starts
3512re Region End offset for where the body of a region ends
3513lc Leading Context offset past "leading context" of pattern
3514
3515The {offset} can be:
3516
3517s start of the matched pattern
3518s+{nr} start of the matched pattern plus {nr} chars to the right
3519s-{nr} start of the matched pattern plus {nr} chars to the left
3520e end of the matched pattern
3521e+{nr} end of the matched pattern plus {nr} chars to the right
3522e-{nr} end of the matched pattern plus {nr} chars to the left
3523{nr} (for "lc" only): start matching {nr} chars to the left
3524
3525Examples: "ms=s+1", "hs=e-2", "lc=3".
3526
3527Although all offsets are accepted after any pattern, they are not always
3528meaningful. This table shows which offsets are actually used:
3529
3530 ms me hs he rs re lc ~
3531match item yes yes yes yes - - yes
3532region item start yes - yes - yes - yes
3533region item skip - yes - - - - yes
3534region item end - yes - yes - yes yes
3535
3536Offsets can be concatenated, with a ',' in between. Example: >
3537 :syn match String /"[^"]*"/hs=s+1,he=e-1
3538<
3539 some "string" text
3540 ^^^^^^ highlighted
3541
3542Notes:
3543- There must be no white space between the pattern and the character
3544 offset(s).
3545- The highlighted area will never be outside of the matched text.
3546- A negative offset for an end pattern may not always work, because the end
3547 pattern may be detected when the highlighting should already have stopped.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003548- Before Vim 7.2 the offsets were counted in bytes instead of characters.
3549 This didn't work well for multi-byte characters, so it was changed with the
3550 Vim 7.2 release.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551- The start of a match cannot be in a line other than where the pattern
3552 matched. This doesn't work: "a\nb"ms=e. You can make the highlighting
3553 start in another line, this does work: "a\nb"hs=e.
3554
3555Example (match a comment but don't highlight the /* and */): >
3556 :syntax region Comment start="/\*"hs=e+1 end="\*/"he=s-1
3557<
3558 /* this is a comment */
3559 ^^^^^^^^^^^^^^^^^^^ highlighted
3560
3561A more complicated Example: >
3562 :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
3563<
3564 abcfoostringbarabc
3565 mmmmmmmmmmm match
Bram Moolenaar4770d092006-01-12 23:22:24 +00003566 sssrrreee highlight start/region/end ("Foo", "Exa" and "Bar")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567
3568Leading context *:syn-lc* *:syn-leading* *:syn-context*
3569
3570Note: This is an obsolete feature, only included for backwards compatibility
3571with previous Vim versions. It's now recommended to use the |/\@<=| construct
3572in the pattern.
3573
3574The "lc" offset specifies leading context -- a part of the pattern that must
3575be present, but is not considered part of the match. An offset of "lc=n" will
3576cause Vim to step back n columns before attempting the pattern match, allowing
3577characters which have already been matched in previous patterns to also be
3578used as leading context for this match. This can be used, for instance, to
3579specify that an "escaping" character must not precede the match: >
3580
3581 :syn match ZNoBackslash "[^\\]z"ms=s+1
3582 :syn match WNoBackslash "[^\\]w"lc=1
3583 :syn match Underline "_\+"
3584<
3585 ___zzzz ___wwww
3586 ^^^ ^^^ matches Underline
3587 ^ ^ matches ZNoBackslash
3588 ^^^^ matches WNoBackslash
3589
3590The "ms" offset is automatically set to the same value as the "lc" offset,
3591unless you set "ms" explicitly.
3592
3593
3594Multi-line patterns *:syn-multi-line*
3595
3596The patterns can include "\n" to match an end-of-line. Mostly this works as
3597expected, but there are a few exceptions.
3598
3599When using a start pattern with an offset, the start of the match is not
3600allowed to start in a following line. The highlighting can start in a
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003601following line though. Using the "\zs" item also requires that the start of
3602the match doesn't move to another line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603
3604The skip pattern can include the "\n", but the search for an end pattern will
3605continue in the first character of the next line, also when that character is
3606matched by the skip pattern. This is because redrawing may start in any line
3607halfway a region and there is no check if the skip pattern started in a
3608previous line. For example, if the skip pattern is "a\nb" and an end pattern
3609is "b", the end pattern does match in the second line of this: >
3610 x x a
3611 b x x
3612Generally this means that the skip pattern should not match any characters
3613after the "\n".
3614
3615
3616External matches *:syn-ext-match*
3617
3618These extra regular expression items are available in region patterns:
3619
3620 */\z(* */\z(\)* *E50* *E52*
3621 \z(\) Marks the sub-expression as "external", meaning that it is can
3622 be accessed from another pattern match. Currently only usable
3623 in defining a syntax region start pattern.
3624
3625 */\z1* */\z2* */\z3* */\z4* */\z5*
3626 \z1 ... \z9 */\z6* */\z7* */\z8* */\z9* *E66* *E67*
3627 Matches the same string that was matched by the corresponding
3628 sub-expression in a previous start pattern match.
3629
3630Sometimes the start and end patterns of a region need to share a common
3631sub-expression. A common example is the "here" document in Perl and many Unix
3632shells. This effect can be achieved with the "\z" special regular expression
3633items, which marks a sub-expression as "external", in the sense that it can be
3634referenced from outside the pattern in which it is defined. The here-document
3635example, for instance, can be done like this: >
3636 :syn region hereDoc start="<<\z(\I\i*\)" end="^\z1$"
3637
3638As can be seen here, the \z actually does double duty. In the start pattern,
3639it marks the "\(\I\i*\)" sub-expression as external; in the end pattern, it
3640changes the \1 back-reference into an external reference referring to the
3641first external sub-expression in the start pattern. External references can
3642also be used in skip patterns: >
3643 :syn region foo start="start \(\I\i*\)" skip="not end \z1" end="end \z1"
3644
3645Note that normal and external sub-expressions are completely orthogonal and
3646indexed separately; for instance, if the pattern "\z(..\)\(..\)" is applied
3647to the string "aabb", then \1 will refer to "bb" and \z1 will refer to "aa".
3648Note also that external sub-expressions cannot be accessed as back-references
3649within the same pattern like normal sub-expressions. If you want to use one
3650sub-expression as both a normal and an external sub-expression, you can nest
3651the two, as in "\(\z(...\)\)".
3652
3653Note that only matches within a single line can be used. Multi-line matches
3654cannot be referred to.
3655
3656==============================================================================
36578. Syntax clusters *:syn-cluster* *E400*
3658
3659:sy[ntax] cluster {cluster-name} [contains={group-name}..]
3660 [add={group-name}..]
3661 [remove={group-name}..]
3662
3663This command allows you to cluster a list of syntax groups together under a
3664single name.
3665
3666 contains={group-name}..
3667 The cluster is set to the specified list of groups.
3668 add={group-name}..
3669 The specified groups are added to the cluster.
3670 remove={group-name}..
3671 The specified groups are removed from the cluster.
3672
Bram Moolenaar8c8de832008-06-24 22:58:06 +00003673A cluster so defined may be referred to in a contains=.., containedin=..,
3674nextgroup=.., add=.. or remove=.. list with a "@" prefix. You can also use
3675this notation to implicitly declare a cluster before specifying its contents.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676
3677Example: >
3678 :syntax match Thing "# [^#]\+ #" contains=@ThingMembers
3679 :syntax cluster ThingMembers contains=ThingMember1,ThingMember2
3680
3681As the previous example suggests, modifications to a cluster are effectively
3682retroactive; the membership of the cluster is checked at the last minute, so
3683to speak: >
3684 :syntax keyword A aaa
3685 :syntax keyword B bbb
3686 :syntax cluster AandB contains=A
3687 :syntax match Stuff "( aaa bbb )" contains=@AandB
3688 :syntax cluster AandB add=B " now both keywords are matched in Stuff
3689
3690This also has implications for nested clusters: >
3691 :syntax keyword A aaa
3692 :syntax keyword B bbb
3693 :syntax cluster SmallGroup contains=B
3694 :syntax cluster BigGroup contains=A,@SmallGroup
3695 :syntax match Stuff "( aaa bbb )" contains=@BigGroup
3696 :syntax cluster BigGroup remove=B " no effect, since B isn't in BigGroup
3697 :syntax cluster SmallGroup remove=B " now bbb isn't matched within Stuff
3698
3699==============================================================================
37009. Including syntax files *:syn-include* *E397*
3701
3702It is often useful for one language's syntax file to include a syntax file for
3703a related language. Depending on the exact relationship, this can be done in
3704two different ways:
3705
3706 - If top-level syntax items in the included syntax file are to be
3707 allowed at the top level in the including syntax, you can simply use
3708 the |:runtime| command: >
3709
3710 " In cpp.vim:
3711 :runtime! syntax/c.vim
3712 :unlet b:current_syntax
3713
3714< - If top-level syntax items in the included syntax file are to be
3715 contained within a region in the including syntax, you can use the
3716 ":syntax include" command:
3717
3718:sy[ntax] include [@{grouplist-name}] {file-name}
3719
3720 All syntax items declared in the included file will have the
3721 "contained" flag added. In addition, if a group list is specified,
3722 all top-level syntax items in the included file will be added to
3723 that list. >
3724
3725 " In perl.vim:
3726 :syntax include @Pod <sfile>:p:h/pod.vim
3727 :syntax region perlPOD start="^=head" end="^=cut" contains=@Pod
3728<
3729 When {file-name} is an absolute path (starts with "/", "c:", "$VAR"
3730 or "<sfile>") that file is sourced. When it is a relative path
3731 (e.g., "syntax/pod.vim") the file is searched for in 'runtimepath'.
3732 All matching files are loaded. Using a relative path is
3733 recommended, because it allows a user to replace the included file
3734 with his own version, without replacing the file that does the ":syn
3735 include".
3736
3737==============================================================================
373810. Synchronizing *:syn-sync* *E403* *E404*
3739
3740Vim wants to be able to start redrawing in any position in the document. To
3741make this possible it needs to know the syntax state at the position where
3742redrawing starts.
3743
3744:sy[ntax] sync [ccomment [group-name] | minlines={N} | ...]
3745
3746There are four ways to synchronize:
37471. Always parse from the start of the file.
3748 |:syn-sync-first|
37492. Based on C-style comments. Vim understands how C-comments work and can
3750 figure out if the current line starts inside or outside a comment.
3751 |:syn-sync-second|
37523. Jumping back a certain number of lines and start parsing there.
3753 |:syn-sync-third|
37544. Searching backwards in the text for a pattern to sync on.
3755 |:syn-sync-fourth|
3756
3757 *:syn-sync-maxlines* *:syn-sync-minlines*
3758For the last three methods, the line range where the parsing can start is
3759limited by "minlines" and "maxlines".
3760
3761If the "minlines={N}" argument is given, the parsing always starts at least
3762that many lines backwards. This can be used if the parsing may take a few
3763lines before it's correct, or when it's not possible to use syncing.
3764
3765If the "maxlines={N}" argument is given, the number of lines that are searched
3766for a comment or syncing pattern is restricted to N lines backwards (after
3767adding "minlines"). This is useful if you have few things to sync on and a
3768slow machine. Example: >
3769 :syntax sync ccomment maxlines=500
3770<
3771 *:syn-sync-linebreaks*
3772When using a pattern that matches multiple lines, a change in one line may
3773cause a pattern to no longer match in a previous line. This means has to
3774start above where the change was made. How many lines can be specified with
3775the "linebreaks" argument. For example, when a pattern may include one line
3776break use this: >
3777 :syntax sync linebreaks=1
3778The result is that redrawing always starts at least one line before where a
3779change was made. The default value for "linebreaks" is zero. Usually the
3780value for "minlines" is bigger than "linebreaks".
3781
3782
3783First syncing method: *:syn-sync-first*
3784>
3785 :syntax sync fromstart
3786
3787The file will be parsed from the start. This makes syntax highlighting
3788accurate, but can be slow for long files. Vim caches previously parsed text,
3789so that it's only slow when parsing the text for the first time. However,
3790when making changes some part of the next needs to be parsed again (worst
3791case: to the end of the file).
3792
3793Using "fromstart" is equivalent to using "minlines" with a very large number.
3794
3795
3796Second syncing method: *:syn-sync-second* *:syn-sync-ccomment*
3797
3798For the second method, only the "ccomment" argument needs to be given.
3799Example: >
3800 :syntax sync ccomment
3801
3802When Vim finds that the line where displaying starts is inside a C-style
3803comment, the last region syntax item with the group-name "Comment" will be
3804used. This requires that there is a region with the group-name "Comment"!
3805An alternate group name can be specified, for example: >
3806 :syntax sync ccomment javaComment
3807This means that the last item specified with "syn region javaComment" will be
3808used for the detected C comment region. This only works properly if that
3809region does have a start pattern "\/*" and an end pattern "*\/".
3810
3811The "maxlines" argument can be used to restrict the search to a number of
3812lines. The "minlines" argument can be used to at least start a number of
3813lines back (e.g., for when there is some construct that only takes a few
3814lines, but it hard to sync on).
3815
3816Note: Syncing on a C comment doesn't work properly when strings are used
3817that cross a line and contain a "*/". Since letting strings cross a line
3818is a bad programming habit (many compilers give a warning message), and the
3819chance of a "*/" appearing inside a comment is very small, this restriction
3820is hardly ever noticed.
3821
3822
3823Third syncing method: *:syn-sync-third*
3824
3825For the third method, only the "minlines={N}" argument needs to be given.
3826Vim will subtract {N} from the line number and start parsing there. This
3827means {N} extra lines need to be parsed, which makes this method a bit slower.
3828Example: >
3829 :syntax sync minlines=50
3830
3831"lines" is equivalent to "minlines" (used by older versions).
3832
3833
3834Fourth syncing method: *:syn-sync-fourth*
3835
3836The idea is to synchronize on the end of a few specific regions, called a
3837sync pattern. Only regions can cross lines, so when we find the end of some
3838region, we might be able to know in which syntax item we are. The search
3839starts in the line just above the one where redrawing starts. From there
3840the search continues backwards in the file.
3841
3842This works just like the non-syncing syntax items. You can use contained
3843matches, nextgroup, etc. But there are a few differences:
3844- Keywords cannot be used.
3845- The syntax items with the "sync" keyword form a completely separated group
3846 of syntax items. You can't mix syncing groups and non-syncing groups.
3847- The matching works backwards in the buffer (line by line), instead of
3848 forwards.
3849- A line continuation pattern can be given. It is used to decide which group
3850 of lines need to be searched like they were one line. This means that the
3851 search for a match with the specified items starts in the first of the
3852 consecutive that contain the continuation pattern.
3853- When using "nextgroup" or "contains", this only works within one line (or
3854 group of continued lines).
3855- When using a region, it must start and end in the same line (or group of
3856 continued lines). Otherwise the end is assumed to be at the end of the
3857 line (or group of continued lines).
3858- When a match with a sync pattern is found, the rest of the line (or group of
3859 continued lines) is searched for another match. The last match is used.
3860 This is used when a line can contain both the start end the end of a region
3861 (e.g., in a C-comment like /* this */, the last "*/" is used).
3862
3863There are two ways how a match with a sync pattern can be used:
38641. Parsing for highlighting starts where redrawing starts (and where the
3865 search for the sync pattern started). The syntax group that is expected
3866 to be valid there must be specified. This works well when the regions
3867 that cross lines cannot contain other regions.
38682. Parsing for highlighting continues just after the match. The syntax group
3869 that is expected to be present just after the match must be specified.
3870 This can be used when the previous method doesn't work well. It's much
3871 slower, because more text needs to be parsed.
3872Both types of sync patterns can be used at the same time.
3873
3874Besides the sync patterns, other matches and regions can be specified, to
3875avoid finding unwanted matches.
3876
3877[The reason that the sync patterns are given separately, is that mostly the
3878search for the sync point can be much simpler than figuring out the
3879highlighting. The reduced number of patterns means it will go (much)
3880faster.]
3881
3882 *syn-sync-grouphere* *E393* *E394*
3883 :syntax sync match {sync-group-name} grouphere {group-name} "pattern" ..
3884
3885 Define a match that is used for syncing. {group-name} is the
3886 name of a syntax group that follows just after the match. Parsing
3887 of the text for highlighting starts just after the match. A region
3888 must exist for this {group-name}. The first one defined will be used.
3889 "NONE" can be used for when there is no syntax group after the match.
3890
3891 *syn-sync-groupthere*
3892 :syntax sync match {sync-group-name} groupthere {group-name} "pattern" ..
3893
3894 Like "grouphere", but {group-name} is the name of a syntax group that
3895 is to be used at the start of the line where searching for the sync
3896 point started. The text between the match and the start of the sync
3897 pattern searching is assumed not to change the syntax highlighting.
3898 For example, in C you could search backwards for "/*" and "*/". If
3899 "/*" is found first, you know that you are inside a comment, so the
3900 "groupthere" is "cComment". If "*/" is found first, you know that you
3901 are not in a comment, so the "groupthere" is "NONE". (in practice
3902 it's a bit more complicated, because the "/*" and "*/" could appear
3903 inside a string. That's left as an exercise to the reader...).
3904
3905 :syntax sync match ..
3906 :syntax sync region ..
3907
3908 Without a "groupthere" argument. Define a region or match that is
3909 skipped while searching for a sync point.
3910
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003911 *syn-sync-linecont*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 :syntax sync linecont {pattern}
3913
3914 When {pattern} matches in a line, it is considered to continue in
3915 the next line. This means that the search for a sync point will
3916 consider the lines to be concatenated.
3917
3918If the "maxlines={N}" argument is given too, the number of lines that are
3919searched for a match is restricted to N. This is useful if you have very
3920few things to sync on and a slow machine. Example: >
3921 :syntax sync maxlines=100
3922
3923You can clear all sync settings with: >
3924 :syntax sync clear
3925
3926You can clear specific sync patterns with: >
3927 :syntax sync clear {sync-group-name} ..
3928
3929==============================================================================
393011. Listing syntax items *:syntax* *:sy* *:syn* *:syn-list*
3931
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00003932This command lists all the syntax items: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933
3934 :sy[ntax] [list]
3935
3936To show the syntax items for one syntax group: >
3937
3938 :sy[ntax] list {group-name}
3939
3940To list the syntax groups in one cluster: *E392* >
3941
3942 :sy[ntax] list @{cluster-name}
3943
3944See above for other arguments for the ":syntax" command.
3945
3946Note that the ":syntax" command can be abbreviated to ":sy", although ":syn"
3947is mostly used, because it looks better.
3948
3949==============================================================================
395012. Highlight command *:highlight* *:hi* *E28* *E411* *E415*
3951
3952There are three types of highlight groups:
3953- The ones used for specific languages. For these the name starts with the
3954 name of the language. Many of these don't have any attributes, but are
3955 linked to a group of the second type.
3956- The ones used for all syntax languages.
3957- The ones used for the 'highlight' option.
3958 *hitest.vim*
3959You can see all the groups currently active with this command: >
3960 :so $VIMRUNTIME/syntax/hitest.vim
3961This will open a new window containing all highlight group names, displayed
3962in their own color.
3963
3964 *:colo* *:colorscheme* *E185*
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003965:colo[rscheme] Output the name of the currently active color scheme.
3966 This is basically the same as >
3967 :echo g:colors_name
3968< In case g:colors_name has not been defined :colo will
3969 output "default". When compiled without the |+eval|
3970 feature it will output "unknown".
3971
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972:colo[rscheme] {name} Load color scheme {name}. This searches 'runtimepath'
3973 for the file "colors/{name}.vim. The first one that
3974 is found is loaded.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003975 To see the name of the currently active color scheme: >
Bram Moolenaar00a927d2010-05-14 23:24:24 +02003976 :colo
3977< The name is also stored in the g:colors_name variable.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01003978 Doesn't work recursively, thus you can't use
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 ":colorscheme" in a color scheme script.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00003980 After the color scheme has been loaded the
3981 |ColorScheme| autocommand event is triggered.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003982 For info about writing a colorscheme file: >
3983 :edit $VIMRUNTIME/colors/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984
3985:hi[ghlight] List all the current highlight groups that have
3986 attributes set.
3987
3988:hi[ghlight] {group-name}
3989 List one highlight group.
3990
3991:hi[ghlight] clear Reset all highlighting to the defaults. Removes all
3992 highlighting for groups added by the user!
3993 Uses the current value of 'background' to decide which
3994 default colors to use.
3995
3996:hi[ghlight] clear {group-name}
3997:hi[ghlight] {group-name} NONE
3998 Disable the highlighting for one highlight group. It
3999 is _not_ set back to the default colors.
4000
4001:hi[ghlight] [default] {group-name} {key}={arg} ..
4002 Add a highlight group, or change the highlighting for
4003 an existing group.
4004 See |highlight-args| for the {key}={arg} arguments.
4005 See |:highlight-default| for the optional [default]
4006 argument.
4007
4008Normally a highlight group is added once when starting up. This sets the
4009default values for the highlighting. After that, you can use additional
4010highlight commands to change the arguments that you want to set to non-default
4011values. The value "NONE" can be used to switch the value off or go back to
4012the default value.
4013
4014A simple way to change colors is with the |:colorscheme| command. This loads
4015a file with ":highlight" commands such as this: >
4016
4017 :hi Comment gui=bold
4018
4019Note that all settings that are not included remain the same, only the
4020specified field is used, and settings are merged with previous ones. So, the
4021result is like this single command has been used: >
4022 :hi Comment term=bold ctermfg=Cyan guifg=#80a0ff gui=bold
4023<
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004024 *:highlight-verbose*
Bram Moolenaar661b1822005-07-28 22:36:45 +00004025When listing a highlight group and 'verbose' is non-zero, the listing will
4026also tell where it was last set. Example: >
4027 :verbose hi Comment
4028< Comment xxx term=bold ctermfg=4 guifg=Blue ~
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004029 Last set from /home/mool/vim/vim7/runtime/syntax/syncolor.vim ~
Bram Moolenaar661b1822005-07-28 22:36:45 +00004030
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00004031When ":hi clear" is used then the script where this command is used will be
4032mentioned for the default values. See |:verbose-cmd| for more information.
Bram Moolenaar661b1822005-07-28 22:36:45 +00004033
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 *highlight-args* *E416* *E417* *E423*
4035There are three types of terminals for highlighting:
4036term a normal terminal (vt100, xterm)
4037cterm a color terminal (MS-DOS console, color-xterm, these have the "Co"
4038 termcap entry)
4039gui the GUI
4040
4041For each type the highlighting can be given. This makes it possible to use
4042the same syntax file on all terminals, and use the optimal highlighting.
4043
40441. highlight arguments for normal terminals
4045
Bram Moolenaar75c50c42005-06-04 22:06:24 +00004046 *bold* *underline* *undercurl*
4047 *inverse* *italic* *standout*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048term={attr-list} *attr-list* *highlight-term* *E418*
4049 attr-list is a comma separated list (without spaces) of the
4050 following items (in any order):
4051 bold
4052 underline
Bram Moolenaar5409c052005-03-18 20:27:04 +00004053 undercurl not always available
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 reverse
4055 inverse same as reverse
4056 italic
4057 standout
4058 NONE no attributes used (used to reset it)
4059
4060 Note that "bold" can be used here and by using a bold font. They
4061 have the same effect.
Bram Moolenaar5409c052005-03-18 20:27:04 +00004062 "undercurl" is a curly underline. When "undercurl" is not possible
4063 then "underline" is used. In general "undercurl" is only available in
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004064 the GUI. The color is set with |highlight-guisp|.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065
4066start={term-list} *highlight-start* *E422*
4067stop={term-list} *term-list* *highlight-stop*
4068 These lists of terminal codes can be used to get
4069 non-standard attributes on a terminal.
4070
4071 The escape sequence specified with the "start" argument
4072 is written before the characters in the highlighted
4073 area. It can be anything that you want to send to the
4074 terminal to highlight this area. The escape sequence
4075 specified with the "stop" argument is written after the
4076 highlighted area. This should undo the "start" argument.
4077 Otherwise the screen will look messed up.
4078
4079 The {term-list} can have two forms:
4080
4081 1. A string with escape sequences.
4082 This is any string of characters, except that it can't start with
4083 "t_" and blanks are not allowed. The <> notation is recognized
4084 here, so you can use things like "<Esc>" and "<Space>". Example:
4085 start=<Esc>[27h;<Esc>[<Space>r;
4086
4087 2. A list of terminal codes.
4088 Each terminal code has the form "t_xx", where "xx" is the name of
4089 the termcap entry. The codes have to be separated with commas.
4090 White space is not allowed. Example:
4091 start=t_C1,t_BL
4092 The terminal codes must exist for this to work.
4093
4094
40952. highlight arguments for color terminals
4096
4097cterm={attr-list} *highlight-cterm*
4098 See above for the description of {attr-list} |attr-list|.
4099 The "cterm" argument is likely to be different from "term", when
4100 colors are used. For example, in a normal terminal comments could
4101 be underlined, in a color terminal they can be made Blue.
4102 Note: Many terminals (e.g., DOS console) can't mix these attributes
4103 with coloring. Use only one of "cterm=" OR "ctermfg=" OR "ctermbg=".
4104
4105ctermfg={color-nr} *highlight-ctermfg* *E421*
4106ctermbg={color-nr} *highlight-ctermbg*
4107 The {color-nr} argument is a color number. Its range is zero to
4108 (not including) the number given by the termcap entry "Co".
4109 The actual color with this number depends on the type of terminal
4110 and its settings. Sometimes the color also depends on the settings of
4111 "cterm". For example, on some systems "cterm=bold ctermfg=3" gives
4112 another color, on others you just get color 3.
4113
4114 For an xterm this depends on your resources, and is a bit
4115 unpredictable. See your xterm documentation for the defaults. The
4116 colors for a color-xterm can be changed from the .Xdefaults file.
4117 Unfortunately this means that it's not possible to get the same colors
4118 for each user. See |xterm-color| for info about color xterms.
4119
4120 The MSDOS standard colors are fixed (in a console window), so these
4121 have been used for the names. But the meaning of color names in X11
4122 are fixed, so these color settings have been used, to make the
4123 highlighting settings portable (complicated, isn't it?). The
4124 following names are recognized, with the color number used:
4125
4126 *cterm-colors*
4127 NR-16 NR-8 COLOR NAME ~
4128 0 0 Black
4129 1 4 DarkBlue
4130 2 2 DarkGreen
4131 3 6 DarkCyan
4132 4 1 DarkRed
4133 5 5 DarkMagenta
4134 6 3 Brown, DarkYellow
4135 7 7 LightGray, LightGrey, Gray, Grey
4136 8 0* DarkGray, DarkGrey
4137 9 4* Blue, LightBlue
4138 10 2* Green, LightGreen
4139 11 6* Cyan, LightCyan
4140 12 1* Red, LightRed
4141 13 5* Magenta, LightMagenta
4142 14 3* Yellow, LightYellow
4143 15 7* White
4144
4145 The number under "NR-16" is used for 16-color terminals ('t_Co'
4146 greater than or equal to 16). The number under "NR-8" is used for
4147 8-color terminals ('t_Co' less than 16). The '*' indicates that the
4148 bold attribute is set for ctermfg. In many 8-color terminals (e.g.,
4149 "linux"), this causes the bright colors to appear. This doesn't work
4150 for background colors! Without the '*' the bold attribute is removed.
4151 If you want to set the bold attribute in a different way, put a
4152 "cterm=" argument AFTER the "ctermfg=" or "ctermbg=" argument. Or use
4153 a number instead of a color name.
4154
4155 The case of the color names is ignored.
4156 Note that for 16 color ansi style terminals (including xterms), the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00004157 numbers in the NR-8 column is used. Here '*' means 'add 8' so that Blue
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 is 12, DarkGray is 8 etc.
4159
4160 Note that for some color terminals these names may result in the wrong
4161 colors!
4162
4163 *:hi-normal-cterm*
4164 When setting the "ctermfg" or "ctermbg" colors for the Normal group,
4165 these will become the colors used for the non-highlighted text.
4166 Example: >
4167 :highlight Normal ctermfg=grey ctermbg=darkblue
4168< When setting the "ctermbg" color for the Normal group, the
4169 'background' option will be adjusted automatically. This causes the
4170 highlight groups that depend on 'background' to change! This means
4171 you should set the colors for Normal first, before setting other
4172 colors.
4173 When a colorscheme is being used, changing 'background' causes it to
4174 be reloaded, which may reset all colors (including Normal). First
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01004175 delete the "g:colors_name" variable when you don't want this.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176
4177 When you have set "ctermfg" or "ctermbg" for the Normal group, Vim
4178 needs to reset the color when exiting. This is done with the "op"
4179 termcap entry |t_op|. If this doesn't work correctly, try setting the
4180 't_op' option in your .vimrc.
4181 *E419* *E420*
4182 When Vim knows the normal foreground and background colors, "fg" and
4183 "bg" can be used as color names. This only works after setting the
4184 colors for the Normal group and for the MS-DOS console. Example, for
4185 reverse video: >
4186 :highlight Visual ctermfg=bg ctermbg=fg
4187< Note that the colors are used that are valid at the moment this
4188 command are given. If the Normal group colors are changed later, the
4189 "fg" and "bg" colors will not be adjusted.
4190
4191
41923. highlight arguments for the GUI
4193
4194gui={attr-list} *highlight-gui*
4195 These give the attributes to use in the GUI mode.
4196 See |attr-list| for a description.
4197 Note that "bold" can be used here and by using a bold font. They
4198 have the same effect.
4199 Note that the attributes are ignored for the "Normal" group.
4200
4201font={font-name} *highlight-font*
4202 font-name is the name of a font, as it is used on the system Vim
4203 runs on. For X11 this is a complicated name, for example: >
4204 font=-misc-fixed-bold-r-normal--14-130-75-75-c-70-iso8859-1
4205<
4206 The font-name "NONE" can be used to revert to the default font.
4207 When setting the font for the "Normal" group, this becomes the default
4208 font (until the 'guifont' option is changed; the last one set is
4209 used).
4210 The following only works with Motif and Athena, not with other GUIs:
4211 When setting the font for the "Menu" group, the menus will be changed.
4212 When setting the font for the "Tooltip" group, the tooltips will be
4213 changed.
4214 All fonts used, except for Menu and Tooltip, should be of the same
4215 character size as the default font! Otherwise redrawing problems will
4216 occur.
4217
4218guifg={color-name} *highlight-guifg*
4219guibg={color-name} *highlight-guibg*
Bram Moolenaar5409c052005-03-18 20:27:04 +00004220guisp={color-name} *highlight-guisp*
4221 These give the foreground (guifg), background (guibg) and special
Bram Moolenaar7df351e2006-01-23 22:30:28 +00004222 (guisp) color to use in the GUI. "guisp" is used for undercurl.
4223 There are a few special names:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 NONE no color (transparent)
4225 bg use normal background color
4226 background use normal background color
4227 fg use normal foreground color
4228 foreground use normal foreground color
4229 To use a color name with an embedded space or other special character,
4230 put it in single quotes. The single quote cannot be used then.
4231 Example: >
4232 :hi comment guifg='salmon pink'
4233<
4234 *gui-colors*
4235 Suggested color names (these are available on most systems):
4236 Red LightRed DarkRed
4237 Green LightGreen DarkGreen SeaGreen
4238 Blue LightBlue DarkBlue SlateBlue
4239 Cyan LightCyan DarkCyan
4240 Magenta LightMagenta DarkMagenta
4241 Yellow LightYellow Brown DarkYellow
4242 Gray LightGray DarkGray
4243 Black White
4244 Orange Purple Violet
4245
4246 In the Win32 GUI version, additional system colors are available. See
4247 |win32-colors|.
4248
4249 You can also specify a color by its Red, Green and Blue values.
4250 The format is "#rrggbb", where
4251 "rr" is the Red value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 "gg" is the Green value
Bram Moolenaar5409c052005-03-18 20:27:04 +00004253 "bb" is the Blue value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 All values are hexadecimal, range from "00" to "ff". Examples: >
4255 :highlight Comment guifg=#11f0c3 guibg=#ff00ff
4256<
4257 *highlight-groups* *highlight-default*
4258These are the default highlighting groups. These groups are used by the
4259'highlight' option default. Note that the highlighting depends on the value
4260of 'background'. You can see the current settings with the ":highlight"
4261command.
Bram Moolenaar1a384422010-07-14 19:53:30 +02004262 *hl-ColorColumn*
4263ColorColumn used for the columns set with 'colorcolumn'
Bram Moolenaar860cae12010-06-05 23:22:07 +02004264 *hl-Conceal*
4265Conceal placeholder characters substituted for concealed
4266 text (see 'conceallevel')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 *hl-Cursor*
4268Cursor the character under the cursor
4269 *hl-CursorIM*
4270CursorIM like Cursor, but used when in IME mode |CursorIM|
Bram Moolenaar5316eee2006-03-12 22:11:10 +00004271 *hl-CursorColumn*
4272CursorColumn the screen column that the cursor is in when 'cursorcolumn' is
4273 set
4274 *hl-CursorLine*
4275CursorLine the screen line that the cursor is in when 'cursorline' is
4276 set
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 *hl-Directory*
4278Directory directory names (and other special names in listings)
4279 *hl-DiffAdd*
4280DiffAdd diff mode: Added line |diff.txt|
4281 *hl-DiffChange*
4282DiffChange diff mode: Changed line |diff.txt|
4283 *hl-DiffDelete*
4284DiffDelete diff mode: Deleted line |diff.txt|
4285 *hl-DiffText*
4286DiffText diff mode: Changed text within a changed line |diff.txt|
4287 *hl-ErrorMsg*
4288ErrorMsg error messages on the command line
4289 *hl-VertSplit*
4290VertSplit the column separating vertically split windows
4291 *hl-Folded*
4292Folded line used for closed folds
4293 *hl-FoldColumn*
4294FoldColumn 'foldcolumn'
4295 *hl-SignColumn*
4296SignColumn column where |signs| are displayed
4297 *hl-IncSearch*
4298IncSearch 'incsearch' highlighting; also used for the text replaced with
4299 ":s///c"
4300 *hl-LineNr*
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004301LineNr Line number for ":number" and ":#" commands, and when 'number'
Bram Moolenaar64486672010-05-16 15:46:46 +02004302 or 'relativenumber' option is set.
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00004303 *hl-MatchParen*
4304MatchParen The character under the cursor or just before it, if it
4305 is a paired bracket, and its match. |pi_paren.txt|
4306
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 *hl-ModeMsg*
4308ModeMsg 'showmode' message (e.g., "-- INSERT --")
4309 *hl-MoreMsg*
4310MoreMsg |more-prompt|
4311 *hl-NonText*
4312NonText '~' and '@' at the end of the window, characters from
4313 'showbreak' and other characters that do not really exist in
4314 the text (e.g., ">" displayed when a double-wide character
4315 doesn't fit at the end of the line).
4316 *hl-Normal*
4317Normal normal text
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00004318 *hl-Pmenu*
4319Pmenu Popup menu: normal item.
4320 *hl-PmenuSel*
4321PmenuSel Popup menu: selected item.
4322 *hl-PmenuSbar*
4323PmenuSbar Popup menu: scrollbar.
4324 *hl-PmenuThumb*
4325PmenuThumb Popup menu: Thumb of the scrollbar.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 *hl-Question*
4327Question |hit-enter| prompt and yes/no questions
4328 *hl-Search*
4329Search Last search pattern highlighting (see 'hlsearch').
4330 Also used for highlighting the current line in the quickfix
4331 window and similar items that need to stand out.
4332 *hl-SpecialKey*
4333SpecialKey Meta and special keys listed with ":map", also for text used
4334 to show unprintable characters in the text, 'listchars'.
4335 Generally: text that is displayed differently from what it
4336 really is.
Bram Moolenaar217ad922005-03-20 22:37:15 +00004337 *hl-SpellBad*
4338SpellBad Word that is not recognized by the spellchecker. |spell|
4339 This will be combined with the highlighting used otherwise.
Bram Moolenaar53180ce2005-07-05 21:48:14 +00004340 *hl-SpellCap*
4341SpellCap Word that should start with a capital. |spell|
4342 This will be combined with the highlighting used otherwise.
Bram Moolenaar217ad922005-03-20 22:37:15 +00004343 *hl-SpellLocal*
4344SpellLocal Word that is recognized by the spellchecker as one that is
4345 used in another region. |spell|
4346 This will be combined with the highlighting used otherwise.
4347 *hl-SpellRare*
4348SpellRare Word that is recognized by the spellchecker as one that is
4349 hardly ever used. |spell|
4350 This will be combined with the highlighting used otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 *hl-StatusLine*
4352StatusLine status line of current window
4353 *hl-StatusLineNC*
4354StatusLineNC status lines of not-current windows
4355 Note: if this is equal to "StatusLine" Vim will use "^^^" in
4356 the status line of the current window.
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004357 *hl-TabLine*
4358TabLine tab pages line, not active tab page label
4359 *hl-TabLineFill*
4360TabLineFill tab pages line, where there are no labels
4361 *hl-TabLineSel*
4362TabLineSel tab pages line, active tab page label
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 *hl-Title*
4364Title titles for output from ":set all", ":autocmd" etc.
4365 *hl-Visual*
4366Visual Visual mode selection
4367 *hl-VisualNOS*
4368VisualNOS Visual mode selection when vim is "Not Owning the Selection".
4369 Only X11 Gui's |gui-x11| and |xterm-clipboard| supports this.
4370 *hl-WarningMsg*
4371WarningMsg warning messages
4372 *hl-WildMenu*
4373WildMenu current match in 'wildmenu' completion
4374
Bram Moolenaarf75a9632005-09-13 21:20:47 +00004375 *hl-User1* *hl-User1..9* *hl-User9*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376The 'statusline' syntax allows the use of 9 different highlights in the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00004377statusline and ruler (via 'rulerformat'). The names are User1 to User9.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004379For the GUI you can use the following groups to set the colors for the menu,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380scrollbars and tooltips. They don't have defaults. This doesn't work for the
4381Win32 GUI. Only three highlight arguments have any effect here: font, guibg,
4382and guifg.
4383
4384 *hl-Menu*
4385Menu Current font, background and foreground colors of the menus.
4386 Also used for the toolbar.
4387 Applicable highlight arguments: font, guibg, guifg.
4388
4389 NOTE: For Motif and Athena the font argument actually
4390 specifies a fontset at all times, no matter if 'guifontset' is
4391 empty, and as such it is tied to the current |:language| when
4392 set.
4393
4394 *hl-Scrollbar*
4395Scrollbar Current background and foreground of the main window's
4396 scrollbars.
4397 Applicable highlight arguments: guibg, guifg.
4398
4399 *hl-Tooltip*
4400Tooltip Current font, background and foreground of the tooltips.
4401 Applicable highlight arguments: font, guibg, guifg.
4402
4403 NOTE: For Motif and Athena the font argument actually
4404 specifies a fontset at all times, no matter if 'guifontset' is
4405 empty, and as such it is tied to the current |:language| when
4406 set.
4407
4408==============================================================================
440913. Linking groups *:hi-link* *:highlight-link* *E412* *E413*
4410
4411When you want to use the same highlighting for several syntax groups, you
4412can do this more easily by linking the groups into one common highlight
4413group, and give the color attributes only for that group.
4414
4415To set a link:
4416
4417 :hi[ghlight][!] [default] link {from-group} {to-group}
4418
4419To remove a link:
4420
4421 :hi[ghlight][!] [default] link {from-group} NONE
4422
4423Notes: *E414*
4424- If the {from-group} and/or {to-group} doesn't exist, it is created. You
4425 don't get an error message for a non-existing group.
4426- As soon as you use a ":highlight" command for a linked group, the link is
4427 removed.
4428- If there are already highlight settings for the {from-group}, the link is
4429 not made, unless the '!' is given. For a ":highlight link" command in a
4430 sourced file, you don't get an error message. This can be used to skip
4431 links for groups that already have settings.
4432
4433 *:hi-default* *:highlight-default*
4434The [default] argument is used for setting the default highlighting for a
4435group. If highlighting has already been specified for the group the command
4436will be ignored. Also when there is an existing link.
4437
4438Using [default] is especially useful to overrule the highlighting of a
4439specific syntax file. For example, the C syntax file contains: >
4440 :highlight default link cComment Comment
4441If you like Question highlighting for C comments, put this in your vimrc file: >
4442 :highlight link cComment Question
4443Without the "default" in the C syntax file, the highlighting would be
4444overruled when the syntax file is loaded.
4445
4446==============================================================================
444714. Cleaning up *:syn-clear* *E391*
4448
4449If you want to clear the syntax stuff for the current buffer, you can use this
4450command: >
4451 :syntax clear
4452
4453This command should be used when you want to switch off syntax highlighting,
4454or when you want to switch to using another syntax. It's normally not needed
4455in a syntax file itself, because syntax is cleared by the autocommands that
4456load the syntax file.
4457The command also deletes the "b:current_syntax" variable, since no syntax is
4458loaded after this command.
4459
4460If you want to disable syntax highlighting for all buffers, you need to remove
4461the autocommands that load the syntax files: >
4462 :syntax off
4463
4464What this command actually does, is executing the command >
4465 :source $VIMRUNTIME/syntax/nosyntax.vim
4466See the "nosyntax.vim" file for details. Note that for this to work
4467$VIMRUNTIME must be valid. See |$VIMRUNTIME|.
4468
4469To clean up specific syntax groups for the current buffer: >
4470 :syntax clear {group-name} ..
4471This removes all patterns and keywords for {group-name}.
4472
4473To clean up specific syntax group lists for the current buffer: >
4474 :syntax clear @{grouplist-name} ..
4475This sets {grouplist-name}'s contents to an empty list.
4476
4477 *:syntax-reset* *:syn-reset*
4478If you have changed the colors and messed them up, use this command to get the
4479defaults back: >
4480
4481 :syntax reset
4482
4483This doesn't change the colors for the 'highlight' option.
4484
4485Note that the syntax colors that you set in your vimrc file will also be reset
4486back to their Vim default.
4487Note that if you are using a color scheme, the colors defined by the color
4488scheme for syntax highlighting will be lost.
4489
4490What this actually does is: >
4491
4492 let g:syntax_cmd = "reset"
4493 runtime! syntax/syncolor.vim
4494
4495Note that this uses the 'runtimepath' option.
4496
4497 *syncolor*
4498If you want to use different colors for syntax highlighting, you can add a Vim
4499script file to set these colors. Put this file in a directory in
4500'runtimepath' which comes after $VIMRUNTIME, so that your settings overrule
4501the default colors. This way these colors will be used after the ":syntax
4502reset" command.
4503
4504For Unix you can use the file ~/.vim/after/syntax/syncolor.vim. Example: >
4505
4506 if &background == "light"
4507 highlight comment ctermfg=darkgreen guifg=darkgreen
4508 else
4509 highlight comment ctermfg=green guifg=green
4510 endif
4511
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004512 *E679*
4513Do make sure this syncolor.vim script does not use a "syntax on", set the
4514'background' option or uses a "colorscheme" command, because it results in an
4515endless loop.
4516
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517Note that when a color scheme is used, there might be some confusion whether
4518your defined colors are to be used or the colors from the scheme. This
4519depends on the color scheme file. See |:colorscheme|.
4520
4521 *syntax_cmd*
4522The "syntax_cmd" variable is set to one of these values when the
4523syntax/syncolor.vim files are loaded:
4524 "on" ":syntax on" command. Highlight colors are overruled but
4525 links are kept
4526 "enable" ":syntax enable" command. Only define colors for groups that
4527 don't have highlighting yet. Use ":syntax default".
4528 "reset" ":syntax reset" command or loading a color scheme. Define all
4529 the colors.
4530 "skip" Don't define colors. Used to skip the default settings when a
4531 syncolor.vim file earlier in 'runtimepath' has already set
4532 them.
4533
4534==============================================================================
453515. Highlighting tags *tag-highlight*
4536
4537If you want to highlight all the tags in your file, you can use the following
4538mappings.
4539
4540 <F11> -- Generate tags.vim file, and highlight tags.
4541 <F12> -- Just highlight tags based on existing tags.vim file.
4542>
4543 :map <F11> :sp tags<CR>:%s/^\([^ :]*:\)\=\([^ ]*\).*/syntax keyword Tag \2/<CR>:wq! tags.vim<CR>/^<CR><F12>
4544 :map <F12> :so tags.vim<CR>
4545
4546WARNING: The longer the tags file, the slower this will be, and the more
4547memory Vim will consume.
4548
4549Only highlighting typedefs, unions and structs can be done too. For this you
4550must use Exuberant ctags (found at http://ctags.sf.net).
4551
4552Put these lines in your Makefile:
4553
4554# Make a highlight file for types. Requires Exuberant ctags and awk
4555types: types.vim
4556types.vim: *.[ch]
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00004557 ctags --c-kinds=gstu -o- *.[ch] |\
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 awk 'BEGIN{printf("syntax keyword Type\t")}\
4559 {printf("%s ", $$1)}END{print ""}' > $@
4560
4561And put these lines in your .vimrc: >
4562
4563 " load the types.vim highlighting file, if it exists
4564 autocmd BufRead,BufNewFile *.[ch] let fname = expand('<afile>:p:h') . '/types.vim'
4565 autocmd BufRead,BufNewFile *.[ch] if filereadable(fname)
4566 autocmd BufRead,BufNewFile *.[ch] exe 'so ' . fname
4567 autocmd BufRead,BufNewFile *.[ch] endif
4568
4569==============================================================================
Bram Moolenaar860cae12010-06-05 23:22:07 +0200457016. Window-local syntax *:ownsyntax*
4571
4572Normally all windows on a buffer share the same syntax settings. It is
4573possible, however, to set a particular window on a file to have its own
4574private syntax setting. A possible example would be to edit LaTeX source
4575with conventional highlighting in one window, while seeing the same source
4576highlighted differently (so as to hide control sequences and indicate bold,
4577italic etc regions) in another. The 'scrollbind' option is useful here.
4578
4579To set the current window to have the syntax "foo", separately from all other
4580windows on the buffer: >
4581 :ownsyntax foo
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004582< *w:current_syntax*
4583This will set the "w:current_syntax" variable to "foo". The value of
4584"b:current_syntax" does not change. This is implemented by saving and
4585restoring "b:current_syntax", since the syntax files do set
4586"b:current_syntax". The value set by the syntax file is assigned to
4587"w:current_syntax".
Bram Moolenaar860cae12010-06-05 23:22:07 +02004588
4589Once a window has its own syntax, syntax commands executed from other windows
4590on the same buffer (including :syntax clear) have no effect. Conversely,
4591syntax commands executed from that window do not effect other windows on the
4592same buffer.
4593
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004594A window with its own syntax reverts to normal behavior when another buffer
4595is loaded into that window or the file is reloaded.
4596When splitting the window, the new window will use the original syntax.
Bram Moolenaar860cae12010-06-05 23:22:07 +02004597
4598==============================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459916. Color xterms *xterm-color* *color-xterm*
4600
4601Most color xterms have only eight colors. If you don't get colors with the
4602default setup, it should work with these lines in your .vimrc: >
4603 :if &term =~ "xterm"
4604 : if has("terminfo")
4605 : set t_Co=8
4606 : set t_Sf=<Esc>[3%p1%dm
4607 : set t_Sb=<Esc>[4%p1%dm
4608 : else
4609 : set t_Co=8
4610 : set t_Sf=<Esc>[3%dm
4611 : set t_Sb=<Esc>[4%dm
4612 : endif
4613 :endif
4614< [<Esc> is a real escape, type CTRL-V <Esc>]
4615
4616You might want to change the first "if" to match the name of your terminal,
4617e.g. "dtterm" instead of "xterm".
4618
4619Note: Do these settings BEFORE doing ":syntax on". Otherwise the colors may
4620be wrong.
4621 *xiterm* *rxvt*
4622The above settings have been mentioned to work for xiterm and rxvt too.
4623But for using 16 colors in an rxvt these should work with terminfo: >
4624 :set t_AB=<Esc>[%?%p1%{8}%<%t25;%p1%{40}%+%e5;%p1%{32}%+%;%dm
4625 :set t_AF=<Esc>[%?%p1%{8}%<%t22;%p1%{30}%+%e1;%p1%{22}%+%;%dm
4626<
4627 *colortest.vim*
4628To test your color setup, a file has been included in the Vim distribution.
Bram Moolenaarf740b292006-02-16 22:11:02 +00004629To use it, execute this command: >
4630 :runtime syntax/colortest.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00004632Some versions of xterm (and other terminals, like the Linux console) can
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633output lighter foreground colors, even though the number of colors is defined
4634at 8. Therefore Vim sets the "cterm=bold" attribute for light foreground
4635colors, when 't_Co' is 8.
4636
4637 *xfree-xterm*
4638To get 16 colors or more, get the newest xterm version (which should be
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00004639included with XFree86 3.3 and later). You can also find the latest version
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640at: >
4641 http://invisible-island.net/xterm/xterm.html
4642Here is a good way to configure it. This uses 88 colors and enables the
4643termcap-query feature, which allows Vim to ask the xterm how many colors it
4644supports. >
4645 ./configure --disable-bold-color --enable-88-color --enable-tcap-query
4646If you only get 8 colors, check the xterm compilation settings.
4647(Also see |UTF8-xterm| for using this xterm with UTF-8 character encoding).
4648
4649This xterm should work with these lines in your .vimrc (for 16 colors): >
4650 :if has("terminfo")
4651 : set t_Co=16
4652 : set t_AB=<Esc>[%?%p1%{8}%<%t%p1%{40}%+%e%p1%{92}%+%;%dm
4653 : set t_AF=<Esc>[%?%p1%{8}%<%t%p1%{30}%+%e%p1%{82}%+%;%dm
4654 :else
4655 : set t_Co=16
4656 : set t_Sf=<Esc>[3%dm
4657 : set t_Sb=<Esc>[4%dm
4658 :endif
4659< [<Esc> is a real escape, type CTRL-V <Esc>]
4660
4661Without |+terminfo|, Vim will recognize these settings, and automatically
4662translate cterm colors of 8 and above to "<Esc>[9%dm" and "<Esc>[10%dm".
4663Colors above 16 are also translated automatically.
4664
4665For 256 colors this has been reported to work: >
4666
4667 :set t_AB=<Esc>[48;5;%dm
4668 :set t_AF=<Esc>[38;5;%dm
4669
4670Or just set the TERM environment variable to "xterm-color" or "xterm-16color"
4671and try if that works.
4672
4673You probably want to use these X resources (in your ~/.Xdefaults file):
4674 XTerm*color0: #000000
4675 XTerm*color1: #c00000
4676 XTerm*color2: #008000
4677 XTerm*color3: #808000
4678 XTerm*color4: #0000c0
4679 XTerm*color5: #c000c0
4680 XTerm*color6: #008080
4681 XTerm*color7: #c0c0c0
4682 XTerm*color8: #808080
4683 XTerm*color9: #ff6060
4684 XTerm*color10: #00ff00
4685 XTerm*color11: #ffff00
4686 XTerm*color12: #8080ff
4687 XTerm*color13: #ff40ff
4688 XTerm*color14: #00ffff
4689 XTerm*color15: #ffffff
4690 Xterm*cursorColor: Black
4691
4692[Note: The cursorColor is required to work around a bug, which changes the
4693cursor color to the color of the last drawn text. This has been fixed by a
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00004694newer version of xterm, but not everybody is using it yet.]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695
4696To get these right away, reload the .Xdefaults file to the X Option database
4697Manager (you only need to do this when you just changed the .Xdefaults file): >
4698 xrdb -merge ~/.Xdefaults
4699<
4700 *xterm-blink* *xterm-blinking-cursor*
4701To make the cursor blink in an xterm, see tools/blink.c. Or use Thomas
4702Dickey's xterm above patchlevel 107 (see above for where to get it), with
4703these resources:
4704 XTerm*cursorBlink: on
4705 XTerm*cursorOnTime: 400
4706 XTerm*cursorOffTime: 250
4707 XTerm*cursorColor: White
4708
4709 *hpterm-color*
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00004710These settings work (more or less) for an hpterm, which only supports 8
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711foreground colors: >
4712 :if has("terminfo")
4713 : set t_Co=8
4714 : set t_Sf=<Esc>[&v%p1%dS
4715 : set t_Sb=<Esc>[&v7S
4716 :else
4717 : set t_Co=8
4718 : set t_Sf=<Esc>[&v%dS
4719 : set t_Sb=<Esc>[&v7S
4720 :endif
4721< [<Esc> is a real escape, type CTRL-V <Esc>]
4722
4723 *Eterm* *enlightened-terminal*
4724These settings have been reported to work for the Enlightened terminal
4725emulator, or Eterm. They might work for all xterm-like terminals that use the
4726bold attribute to get bright colors. Add an ":if" like above when needed. >
4727 :set t_Co=16
4728 :set t_AF=^[[%?%p1%{8}%<%t3%p1%d%e%p1%{22}%+%d;1%;m
4729 :set t_AB=^[[%?%p1%{8}%<%t4%p1%d%e%p1%{32}%+%d;1%;m
4730<
4731 *TTpro-telnet*
4732These settings should work for TTpro telnet. Tera Term Pro is a freeware /
4733open-source program for MS-Windows. >
4734 set t_Co=16
4735 set t_AB=^[[%?%p1%{8}%<%t%p1%{40}%+%e%p1%{32}%+5;%;%dm
4736 set t_AF=^[[%?%p1%{8}%<%t%p1%{30}%+%e%p1%{22}%+1;%;%dm
4737Also make sure TTpro's Setup / Window / Full Color is enabled, and make sure
4738that Setup / Font / Enable Bold is NOT enabled.
4739(info provided by John Love-Jensen <eljay@Adobe.COM>)
4740
4741 vim:tw=78:sw=4:ts=8:ft=help:norl: