diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-06-24 22:14:38 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-06-24 22:14:38 +0000 |
commit | 864207de089119377a1e1e5d411307d8eb57399e (patch) | |
tree | d5bc119317f9c46d7136d1e12f06bac3b13d491b /runtime/doc/repeat.txt | |
parent | c1a11ed54c7974b74be38f2aef6a200d7cfc878e (diff) |
updated for version 7.2a
Diffstat (limited to 'runtime/doc/repeat.txt')
-rw-r--r-- | runtime/doc/repeat.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt index 2361ddcb19..38a485753d 100644 --- a/runtime/doc/repeat.txt +++ b/runtime/doc/repeat.txt @@ -1,4 +1,4 @@ -*repeat.txt* For Vim version 7.1. Last change: 2007 Jan 07 +*repeat.txt* For Vim version 7.2a. Last change: 2007 Aug 12 VIM REFERENCE MANUAL by Bram Moolenaar @@ -89,10 +89,11 @@ This replaces all occurrences of "pat" with "PAT". The same can be done with: :%s/pat/PAT/g Which is two characters shorter! -A special case is using ":visual" as a command. This will move to a matching -line, go to Normal mode to let you execute commands there until you use |Q| to -return to Ex mode. This will be repeated for each matching line. While doing -this you cannot use ":global". +When using "global" in Ex mode, a special case is using ":visual" as a +command. This will move to a matching line, go to Normal mode to let you +execute commands there until you use |Q| to return to Ex mode. This will be +repeated for each matching line. While doing this you cannot use ":global". +To abort this type CTRL-C twice. ============================================================================== 3. Complex repeats *complex-repeat* |