diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-01-22 23:22:22 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-01-22 23:22:22 +0000 |
commit | 66fa271a25f5d7e7be7425ef97b22cf11ee1b0b8 (patch) | |
tree | 694bb4e0de4e1f9b6c9eb7a59498c785acd9022c /runtime/doc/visual.txt | |
parent | 0ac9379acfad03dd478bd4b0e1e1b3c267dbdeba (diff) | |
download | vim-66fa271a25f5d7e7be7425ef97b22cf11ee1b0b8.zip |
updated for version 7.0185
Diffstat (limited to 'runtime/doc/visual.txt')
-rw-r--r-- | runtime/doc/visual.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/doc/visual.txt b/runtime/doc/visual.txt index f8e1efced..1ff70ac05 100644 --- a/runtime/doc/visual.txt +++ b/runtime/doc/visual.txt @@ -1,4 +1,4 @@ -*visual.txt* For Vim version 7.0aa. Last change: 2005 Oct 09 +*visual.txt* For Vim version 7.0aa. Last change: 2006 Jan 22 VIM REFERENCE MANUAL by Bram Moolenaar @@ -258,6 +258,11 @@ operator character: "v{move-around}3>" (move lines 3 indents to the right). The {move-around} is any sequence of movement commands. Note the difference with {motion}, which is only ONE movement command. +Another way to operate on the Visual area is using the |/\%V| item in a +pattern. For example, to replace all '(' in the Visual area with '#': > + + :%s/\%V(/X/g + ============================================================================== 5. Blockwise operators *blockwise-operators* |