comparison runtime/doc/syntax.txt @ 1275:d787f6c4c481

updated for version 7.1
author vimboss
date Sat, 12 May 2007 15:07:00 +0000
parents edc1c9d6dab9
children 18ee39301b82
comparison
equal deleted inserted replaced
1274:a58348a6a24c 1275:d787f6c4c481
1 *syntax.txt* For Vim version 7.1b. Last change: 2007 May 07 1 *syntax.txt* For Vim version 7.1. Last change: 2007 May 11
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
994 994
995 FORM *form.vim* *ft-form-syntax* 995 FORM *form.vim* *ft-form-syntax*
996 996
997 The coloring scheme for syntax elements in the FORM file uses the default 997 The coloring scheme for syntax elements in the FORM file uses the default
998 modes Conditional, Number, Statement, Comment, PreProc, Type, and String, 998 modes Conditional, Number, Statement, Comment, PreProc, Type, and String,
999 following the language specifications in 'Symbolic Manipulation with FORM'' by 999 following the language specifications in 'Symbolic Manipulation with FORM' by
1000 J.A.M. Vermaseren, CAN, Netherlands, 1991. 1000 J.A.M. Vermaseren, CAN, Netherlands, 1991.
1001 1001
1002 If you want include your own changes to the default colors, you have to 1002 If you want include your own changes to the default colors, you have to
1003 redefine the following syntax groups: 1003 redefine the following syntax groups:
1004 1004
3279 skipnl *:syn-skipnl* 3279 skipnl *:syn-skipnl*
3280 skipempty *:syn-skipempty* 3280 skipempty *:syn-skipempty*
3281 3281
3282 These arguments are only used in combination with "nextgroup". They can be 3282 These arguments are only used in combination with "nextgroup". They can be
3283 used to allow the next group to match after skipping some text: 3283 used to allow the next group to match after skipping some text:
3284 skipwhite skip over space and Tab characters 3284 skipwhite skip over space and tab characters
3285 skipnl skip over the end of a line 3285 skipnl skip over the end of a line
3286 skipempty skip over empty lines (implies a "skipnl") 3286 skipempty skip over empty lines (implies a "skipnl")
3287 3287
3288 When "skipwhite" is present, the white space is only skipped if there is no 3288 When "skipwhite" is present, the white space is only skipped if there is no
3289 next group that matches the white space. 3289 next group that matches the white space.