summaryrefslogtreecommitdiff
path: root/runtime/doc/visual.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-01-22 23:22:22 +0000
committerBram Moolenaar <Bram@vim.org>2006-01-22 23:22:22 +0000
commit66fa271a25f5d7e7be7425ef97b22cf11ee1b0b8 (patch)
tree694bb4e0de4e1f9b6c9eb7a59498c785acd9022c /runtime/doc/visual.txt
parent0ac9379acfad03dd478bd4b0e1e1b3c267dbdeba (diff)
downloadvim-66fa271a25f5d7e7be7425ef97b22cf11ee1b0b8.zip
updated for version 7.0185
Diffstat (limited to 'runtime/doc/visual.txt')
-rw-r--r--runtime/doc/visual.txt7
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*