diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2015-08-06 11:08:04 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2015-08-06 13:45:08 +0200 |
| commit | bb1ca1631def9be20da34af66b11c48daab09313 (patch) | |
| tree | a2bbbd8975640073f9c95f8dc222fca97b78ab09 /config.def.h | |
| parent | 2084b81c593cd5ebefe0d6b19dfad2c85811d0a6 (diff) | |
| download | vis-bb1ca1631def9be20da34af66b11c48daab09313.tar.gz vis-bb1ca1631def9be20da34af66b11c48daab09313.tar.xz | |
vis: implement al and il text objects
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 5269ea4..b8c7e7d 100644 --- a/config.def.h +++ b/config.def.h @@ -171,6 +171,7 @@ static KeyBinding vis_textobjs[] = { { { NONE('a'), NONE('`') }, textobj, { .i = TEXT_OBJ_OUTER_BACKTICK } }, { { NONE('a'), NONE('e') }, textobj, { .i = TEXT_OBJ_OUTER_ENTIRE } }, { { NONE('a'), NONE('f') }, textobj, { .i = TEXT_OBJ_OUTER_FUNCTION } }, + { { NONE('a'), NONE('l') }, textobj, { .i = TEXT_OBJ_OUTER_LINE } }, { /* empty last element, array terminator */ }, }; @@ -194,6 +195,7 @@ static KeyBinding vis_inner_textobjs[] = { { { NONE('i'), NONE('`') }, textobj, { .i = TEXT_OBJ_INNER_BACKTICK } }, { { NONE('i'), NONE('e') }, textobj, { .i = TEXT_OBJ_INNER_ENTIRE } }, { { NONE('i'), NONE('f') }, textobj, { .i = TEXT_OBJ_INNER_FUNCTION } }, + { { NONE('i'), NONE('l') }, textobj, { .i = TEXT_OBJ_INNER_LINE } }, { /* empty last element, array terminator */ }, }; |
