comparison runtime/doc/syntax.txt @ 555:a5efb97bc104

updated for version 7.0157
author vimboss
date Wed, 12 Oct 2005 20:58:49 +0000
parents 2df7f3a5eb96
children 2244be18d9e9
comparison
equal deleted inserted replaced
554:917c4fda217f 555:a5efb97bc104
1 *syntax.txt* For Vim version 7.0aa. Last change: 2005 Oct 02 1 *syntax.txt* For Vim version 7.0aa. Last change: 2005 Oct 12
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1456 Lex uses brute-force synchronizing as the "^%%$" section delimiter 1456 Lex uses brute-force synchronizing as the "^%%$" section delimiter
1457 gives no clue as to what section follows. Consequently, the value for > 1457 gives no clue as to what section follows. Consequently, the value for >
1458 :syn sync minlines=300 1458 :syn sync minlines=300
1459 may be changed by the user if s/he is experiencing synchronization 1459 may be changed by the user if s/he is experiencing synchronization
1460 difficulties (such as may happen with large lex files). 1460 difficulties (such as may happen with large lex files).
1461
1462
1463 LISP *lisp.vim* *ft-lisp-syntax*
1464
1465 The lisp syntax highlighting provides two options: >
1466
1467 g:lisp_instring : if it exists, then "(...)" strings are highlighted
1468 as if the contents of the string were lisp.
1469 Useful for AutoLisp.
1470 g:lisp_rainbow : if it exists and is nonzero, then differing levels
1471 of parenthesization will receive different
1472 highlighting.
1473 <
1474 The g:lisp_rainbow option provides 10 levels of individual colorization for
1475 the parentheses and backquoted parentheses. Because of the quantity of
1476 colorization levels, unlike non-rainbow highlighting, the rainbow mode
1477 specifies its highlighting using ctermfg and guifg, thereby bypassing the
1478 usual colorscheme control using standard highlighting groups. The actual
1479 highlighting used depends on the dark/bright setting (see |'bg'|).
1461 1480
1462 1481
1463 LITE *lite.vim* *ft-lite-syntax* 1482 LITE *lite.vim* *ft-lite-syntax*
1464 1483
1465 There are two options for the lite syntax highlighting. 1484 There are two options for the lite syntax highlighting.