docs: add missing <a-{> <a-}> <a-[> and <a-]> keys

This commit is contained in:
Delapouite 2018-06-02 17:16:32 +02:00
parent 57b71f0750
commit 8ca98da1cb

View File

@ -132,6 +132,9 @@ the Shift modifier and moving will extend each selection instead.
*<a-[ft]>*:: *<a-[ft]>*::
same as [ft] but in the other direction same as [ft] but in the other direction
*<a-.>*::
repeat last object or *f*/*t* selection command
*m*:: *m*::
select to matching character, see the `matching_pairs` option select to matching character, see the `matching_pairs` option
in <<options#,`:doc options`>> in <<options#,`:doc options`>>
@ -177,9 +180,6 @@ the Shift modifier and moving will extend each selection instead.
*<a-:>*:: *<a-:>*::
ensure selections are in forward direction (cursor after anchor) ensure selections are in forward direction (cursor after anchor)
*<a-.>*::
repeat last object or *f*/*t* selection command
== Changes == Changes
Yanking (copying) and pasting use the *"* register by default (See <<registers#,`:doc registers`>>) Yanking (copying) and pasting use the *"* register by default (See <<registers#,`:doc registers`>>)
@ -571,28 +571,52 @@ to skim through the jump list using:
For nestable objects, a count can be used in order to specify which surrounding For nestable objects, a count can be used in order to specify which surrounding
level to select. Object selections are repeatable using *<a-.>*. level to select. Object selections are repeatable using *<a-.>*.
=== Whole object
A 'whole object' is an object *including* its surrounding characters.
For example, for a quoted string this will select the quotes, and
for a word this will select trailing spaces.
*<a-a>*:: *<a-a>*::
select the whole object select the whole object
*<a-i>*::
select the inner object, that is the object excluding its surrounder.
For example, for a quoted string, this will not select the quote, and
for a word this will not select trailing spaces.
*[*:: *[*::
select to object start select to the whole object start
*]*:: *]*::
select to object end select to the whole object end
*{*:: *{*::
extend selections to object start extend selections to the whole object start
*}*:: *}*::
extend selections to object end extend selections to the whole object end
After these keys, a second key needs to be entered in order to specify === Inner object
the wanted object:
An 'inner object' is an object *excluding* its surrounding characters.
For example, for a quoted string this will *not* select the quotes, and
for a word this will *not* select trailing spaces.
*<a-i>*::
select the inner object
*<a-[>*::
select to the inner object start
*<a-]>*::
select to the inner object end
*<a-{>*::
extend selections to the inner object start
*<a-}>*::
extend selections to the inner object end
=== Objects types
After the keys described above, a second key needs to be entered
in order to specify the wanted object:
*b*, *(*, *)*:: *b*, *(*, *)*::
select the enclosing parenthesis select the enclosing parenthesis