diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-12 14:03:30 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-12 14:03:30 +0000 |
commit | 666771a83cec47403806080f1d7d689539929f00 (patch) | |
tree | 3449247ad05260f045b54854458a65b3ce55616f /runtime/doc/fold.txt | |
parent | 8c406603ae8adffc3dd7c121b832b34d3627ebcb (diff) | |
download | vim-git-666771a83cec47403806080f1d7d689539929f00.tar.gz |
updated for version 7.1
Diffstat (limited to 'runtime/doc/fold.txt')
-rw-r--r-- | runtime/doc/fold.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/fold.txt b/runtime/doc/fold.txt index bfad4ca4c..fd71db9d3 100644 --- a/runtime/doc/fold.txt +++ b/runtime/doc/fold.txt @@ -1,4 +1,4 @@ -*fold.txt* For Vim version 7.1b. Last change: 2006 Mar 29 +*fold.txt* For Vim version 7.1. Last change: 2007 May 11 VIM REFERENCE MANUAL by Bram Moolenaar @@ -73,7 +73,7 @@ EXPR *fold-expr* The folds are automatically defined by their foldlevel, like with the "indent" method. The value of the 'foldexpr' option is evaluated to get the foldlevel of a line. Examples: -This will create a fold for all consecutive lines that start with a Tab: > +This will create a fold for all consecutive lines that start with a tab: > :set foldexpr=getline(v:lnum)[0]==\"\\t\" This will call a function to compute the fold level: > :set foldexpr=MyFoldLevel(v:lnum) |