diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-12 15:23:40 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-12 15:23:40 +0000 |
commit | 4b4dc6487683e955802bd0ffafeeea0e37834102 (patch) | |
tree | 963644ace06ef59a8fc24a285db91f53d87ab199 /runtime/doc/usr_12.txt | |
parent | 994cd1237fc01072852c674aa24d11c1c5d60574 (diff) | |
download | vim-git-4b4dc6487683e955802bd0ffafeeea0e37834102.tar.gz |
updated for version 7.1
Diffstat (limited to 'runtime/doc/usr_12.txt')
-rw-r--r-- | runtime/doc/usr_12.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/usr_12.txt b/runtime/doc/usr_12.txt index 944a21b51..ed272f68c 100644 --- a/runtime/doc/usr_12.txt +++ b/runtime/doc/usr_12.txt @@ -1,4 +1,4 @@ -*usr_12.txt* For Vim version 7.1b. Last change: 2006 Nov 18 +*usr_12.txt* For Vim version 7.1. Last change: 2007 May 11 VIM USER MANUAL - by Bram Moolenaar @@ -294,7 +294,7 @@ Later will be explained how you write patterns like this |usr_27.txt|. The "to" part of the substitute command is empty: "//". Thus it replaces with nothing, effectively deleting the matched white space. -Another wasteful use of spaces is placing them before a Tab. Often these can +Another wasteful use of spaces is placing them before a tab. Often these can be deleted without changing the amount of white space. But not always! Therefore, you can best do this manually. Use this search command: > @@ -302,7 +302,7 @@ Therefore, you can best do this manually. Use this search command: > You cannot see it, but there is a space before a tab in this command. Thus it's "/<Space><Tab>". Now use "x" to delete the space and check that the -amount of white space doesn't change. You might have to insert a Tab if it +amount of white space doesn't change. You might have to insert a tab if it does change. Type "n" to find the next match. Repeat this until no more matches can be found. |