comparison runtime/doc/pi_paren.txt @ 819:23f82b5d2814 v7.0c10

updated for version 7.0c10
author vimboss
date Wed, 05 Apr 2006 20:41:53 +0000
parents 1f929f3ca806
children 6675076019ae
comparison
equal deleted inserted replaced
818:1f929f3ca806 819:23f82b5d2814
1 *pi_paren.txt* For Vim version 7.0c. Last change: 2006 Mar 29 1 *pi_paren.txt* For Vim version 7.0c. Last change: 2006 Apr 03
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
36 The syntax highlighting attributes are used. When the cursor currently is not 36 The syntax highlighting attributes are used. When the cursor currently is not
37 in a string or comment syntax item, then matches inside string and comment 37 in a string or comment syntax item, then matches inside string and comment
38 syntax items are ignored. Any syntax items with "string" or "comment" 38 syntax items are ignored. Any syntax items with "string" or "comment"
39 somewhere in their name are considered string or comment items. 39 somewhere in their name are considered string or comment items.
40 40
41 The search is limited to what is visible in the window. The plugin doesn't 41 The search is limited to avoid a delay when moving the cursor. The limits
42 search further than 100 lines to avoid a long delay when there are closed 42 are:
43 folds. 43 - What is visible in the window.
44 - 100 lines above or below the cursor to avoid a long delay when there are
45 closed folds.
46 - 'synmaxcolumn' times 2 bytes before or after the cursor to avoid a delay
47 in a long line with syntax highlighting.
44 48
45 ============================================================================== 49 ==============================================================================
46 vim:tw=78:ts=8:ft=help:norl: 50 vim:tw=78:ts=8:ft=help:norl: