Add 'a' alias to angle brackets text object

fixes #39
This commit is contained in:
Maxime Coste 2014-01-23 19:45:09 +00:00
parent cccb07c7cd
commit f6e5deae5a
2 changed files with 2 additions and 2 deletions

View File

@ -304,7 +304,7 @@ object you want.
* _b_, _(_ or _)_: select the enclosing parenthesis
* _B_, _{_ or _}_: select the enclosing {} block
* _r_, _[_ or _]_: select the enclosing [] block
* _<_ or _>_: select the enclosing <> block
* _a_, _<_ or _>_: select the enclosing <> block
* _"_: select the enclosing double quoted string
* _'_: select the enclosing single quoted string
* _w_: select the whole word

View File

@ -870,7 +870,7 @@ void select_object(Context& context, int param)
{ { '(', ')' }, 'b' },
{ { '{', '}' }, 'B' },
{ { '[', ']' }, 'r' },
{ { '<', '>' }, '\0' },
{ { '<', '>' }, 'a' },
{ { '"', '"' }, 'Q' },
{ { '\'', '\'' }, 'q' },
};