comparison runtime/doc/fold.txt @ 33:f6033dcbaf31

updated for version 7.0020
author vimboss
date Sun, 24 Oct 2004 19:18:58 +0000
parents 7edf9b6e4c36
children c75153d791d0
comparison
equal deleted inserted replaced
32:41f9fd58cf13 33:f6033dcbaf31
1 *fold.txt* For Vim version 7.0aa. Last change: 2004 Jun 14 1 *fold.txt* For Vim version 7.0aa. Last change: 2004 Oct 15
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
188 ends and another fold with the same level starts. 188 ends and another fold with the same level starts.
189 2. If a marker with a higher fold level is found, a nested fold is started. 189 2. If a marker with a higher fold level is found, a nested fold is started.
190 3. if a marker with a lower fold level is found, all folds up to and including 190 3. if a marker with a lower fold level is found, all folds up to and including
191 this level end and a fold with the specified level starts. 191 this level end and a fold with the specified level starts.
192 192
193 The number indicates the fold level. A zero cannot be used. 193 The number indicates the fold level. A zero cannot be used (a marker with
194 You can use "}}}" with a digit to indicate the level of the fold that 194 level zero is ignored). You can use "}}}" with a digit to indicate the level
195 ends. The fold level of the following line will be one less than the 195 of the fold that ends. The fold level of the following line will be one less
196 indicated level. Note that Vim doesn't look back to the level of the matching 196 than the indicated level. Note that Vim doesn't look back to the level of the
197 marker (that would take too much time). Example: > 197 matching marker (that would take too much time). Example: >
198 198
199 {{{1 199 {{{1
200 fold level here is 1 200 fold level here is 1
201 {{{3 201 {{{3
202 fold level here is 3 202 fold level here is 3