comparison runtime/doc/motion.txt @ 12:bdeee1504ac1

updated for version 7.0004
author vimboss
date Fri, 02 Jul 2004 15:38:35 +0000
parents 4102fb4ea781
children 4ac1dce8dd5e
comparison
equal deleted inserted replaced
11:4424b47a0797 12:bdeee1504ac1
1 *motion.txt* For Vim version 7.0aa. Last change: 2004 Jun 17 1 *motion.txt* For Vim version 7.0aa. Last change: 2004 Jul 02
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
594 i{ *v_iB* *v_i{* *iB* 594 i{ *v_iB* *v_i{* *iB*
595 iB "inner Block", select [count] Blocks, from "[count] [{" 595 iB "inner Block", select [count] Blocks, from "[count] [{"
596 to the matching '}', excluding the '{' and '}' (see 596 to the matching '}', excluding the '{' and '}' (see
597 |[{|). 597 |[{|).
598 When used in Visual mode it is made characterwise. 598 When used in Visual mode it is made characterwise.
599
600 a" *v_aquote* *aquote*
601 a' *v_a'* *a'*
602 a` *v_a`* *a`*
603 "a quoted string". Selects the text from the previous
604 quote until the next quote. The 'quoteescape' is used
605 to skip escaped quotes.
606 When the cursor starts on a quote, Vim will figure out
607 which quote pairs form a string by searching from the
608 start of the line.
609 Any trailing or leading white space is included.
610 When used in Visual mode it is made characterwise.
611 Repeating this object in Visual mode another string is
612 included. A count is currently not used.
613
614 i" *v_iquote* *iquote*
615 i' *v_i'* *i'*
616 i` *v_i`* *i`*
617 Like a", a' and a`, but exclude the quotes and
618 repeating won't extend the Visual selection.
599 619
600 When used after an operator: 620 When used after an operator:
601 For non-block objects: 621 For non-block objects:
602 For the "a" commands: The operator applies to the object and the white 622 For the "a" commands: The operator applies to the object and the white
603 space after the object. If there is no white space after the object 623 space after the object. If there is no white space after the object