diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-04-15 21:13:42 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-04-15 21:13:42 +0000 |
commit | 13fcaaf1954e9f0d5aa53a55084e01b2c2741202 (patch) | |
tree | 526724d830562d07e6ecb2cde83aa8323070ae15 /runtime/doc/usr_28.txt | |
parent | 402d2fea7025356c7abcb891017a1b7ddf99cbbf (diff) | |
download | vim-git-13fcaaf1954e9f0d5aa53a55084e01b2c2741202.tar.gz |
updated for version 7.0066v7.0066
Diffstat (limited to 'runtime/doc/usr_28.txt')
-rw-r--r-- | runtime/doc/usr_28.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/usr_28.txt b/runtime/doc/usr_28.txt index 522dc3f9f..8ad98a3ea 100644 --- a/runtime/doc/usr_28.txt +++ b/runtime/doc/usr_28.txt @@ -1,4 +1,4 @@ -*usr_28.txt* For Vim version 7.0aa. Last change: 2003 Dec 21 +*usr_28.txt* For Vim version 7.0aa. Last change: 2005 Apr 01 VIM USER MANUAL - by Bram Moolenaar @@ -350,7 +350,7 @@ You can try it out on this text: Explanation for the 'foldexpr' used in the example (inside out): getline(v:lnum) gets the current line substitute(...,'\\s','','g') removes all white space from the line - substitute(...,'[^>].*','','')) removes everything after leading '>'s + substitute(...,'[^>].*','','') removes everything after leading '>'s strlen(...) counts the length of the string, which is the number of '>'s found |