comparison runtime/doc/syntax.txt @ 3224:8b8ef1fed009

Update runtime files.
author Bram Moolenaar <bram@vim.org>
date Wed, 14 Dec 2011 21:17:39 +0100
parents 37ecb8ff4560
children 91e53bcb7946
comparison
equal deleted inserted replaced
3223:576648218cb5 3224:8b8ef1fed009
1 *syntax.txt* For Vim version 7.3. Last change: 2011 Sep 30 1 *syntax.txt* For Vim version 7.3. Last change: 2011 Nov 26
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
3917 :syntax sync fromstart 3917 :syntax sync fromstart
3918 3918
3919 The file will be parsed from the start. This makes syntax highlighting 3919 The file will be parsed from the start. This makes syntax highlighting
3920 accurate, but can be slow for long files. Vim caches previously parsed text, 3920 accurate, but can be slow for long files. Vim caches previously parsed text,
3921 so that it's only slow when parsing the text for the first time. However, 3921 so that it's only slow when parsing the text for the first time. However,
3922 when making changes some part of the next needs to be parsed again (worst 3922 when making changes some part of the text needs to be parsed again (worst
3923 case: to the end of the file). 3923 case: to the end of the file).
3924 3924
3925 Using "fromstart" is equivalent to using "minlines" with a very large number. 3925 Using "fromstart" is equivalent to using "minlines" with a very large number.
3926 3926
3927 3927