Hi
":help visual-operators" does no list the text objects which
were added in version 7 of Vim. Attached patch adds them
to runtime/doc/visual.txt.
Cheers
-- Dominique
--
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
diff -r 8a0a8f10b43e runtime/doc/visual.txt
--- a/runtime/doc/visual.txt Wed Feb 03 18:14:49 2010 +0100
+++ b/runtime/doc/visual.txt Sat Feb 06 20:05:17 2010 +0100
@@ -211,10 +211,18 @@
ib inner () block |v_ib|
aB a {} block (with braces) |v_aB|
iB inner {} block |v_iB|
+ at a tag block (with tags) |v_at|
+ it inner tag block |v_it|
a< a <> block (with <>) |v_a<|
i< inner <> block |v_i<|
a[ a [] block (with []) |v_a[|
i[ inner [] block |v_i[|
+ a" a double quoted string (with quotes) |v_aquote|
+ i" inner double quoted string |v_iquote|
+ a' a single quoted string (with quotes) |v_a'|
+ i' inner simple quoted string |v_i'|
+ a` a string in backticks (with backticks) |v_a`|
+ i` inner string in backticks |v_i`|
Additionally the following commands can be used:
: start Ex command for highlighted lines (1) |v_:|