comparison runtime/doc/syntax.txt @ 842:a209672376fd v7.0f

updated for version 7.0f
author vimboss
date Mon, 24 Apr 2006 19:47:27 +0000
parents 8e5830943bff
children d3bbb5dd3913
comparison
equal deleted inserted replaced
841:c2cae213194d 842:a209672376fd
1 *syntax.txt* For Vim version 7.0e. Last change: 2006 Apr 20 1 *syntax.txt* For Vim version 7.0f. Last change: 2006 Apr 24
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
646 c_no_c99 don't highlight C99 standard items 646 c_no_c99 don't highlight C99 standard items
647 647
648 When 'foldmethod' is set to "syntax" then /* */ comments and { } blocks will 648 When 'foldmethod' is set to "syntax" then /* */ comments and { } blocks will
649 become a fold. If you don't want comments to become a fold use: > 649 become a fold. If you don't want comments to become a fold use: >
650 :let c_no_comment_fold = 1 650 :let c_no_comment_fold = 1
651 "#if 0" blocks are also folded, unless: >
652 :let c_no_if0_fold = 1
651 653
652 If you notice highlighting errors while scrolling backwards, which are fixed 654 If you notice highlighting errors while scrolling backwards, which are fixed
653 when redrawing with CTRL-L, try setting the "c_minlines" internal variable 655 when redrawing with CTRL-L, try setting the "c_minlines" internal variable
654 to a larger number: > 656 to a larger number: >
655 :let c_minlines = 100 657 :let c_minlines = 100