aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-08-06 11:08:04 +0200
committerMarc André Tanner <mat@brain-dump.org>2015-08-06 13:45:08 +0200
commitbb1ca1631def9be20da34af66b11c48daab09313 (patch)
treea2bbbd8975640073f9c95f8dc222fca97b78ab09 /config.def.h
parent2084b81c593cd5ebefe0d6b19dfad2c85811d0a6 (diff)
downloadvis-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.h2
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 */ },
};