summaryrefslogtreecommitdiff
path: root/runtime/doc/visual.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-07-12 22:01:11 +0200
committerBram Moolenaar <Bram@vim.org>2012-07-12 22:01:11 +0200
commit30b658179962cc3c9f0a98f071b36b09a36c2b94 (patch)
tree65394aa7dfead6c415065471e17fefce6c8cd242 /runtime/doc/visual.txt
parentdfef15481db114779fde81dc577319d88557c13a (diff)
downloadvim-git-30b658179962cc3c9f0a98f071b36b09a36c2b94.tar.gz
Updated runtime files.
Diffstat (limited to 'runtime/doc/visual.txt')
-rw-r--r--runtime/doc/visual.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/runtime/doc/visual.txt b/runtime/doc/visual.txt
index f57384521..4457aeb01 100644
--- a/runtime/doc/visual.txt
+++ b/runtime/doc/visual.txt
@@ -1,4 +1,4 @@
-*visual.txt* For Vim version 7.3. Last change: 2012 May 25
+*visual.txt* For Vim version 7.3. Last change: 2012 Jun 14
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -274,7 +274,10 @@ 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
+ :'<,'>s/\%V(/#/g
+
+Note that the "'<,'>" will appear automatically when you press ":" in Visual
+mode.
==============================================================================
5. Blockwise operators *blockwise-operators*