aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-08-01 13:20:40 +0200
committerMarc André Tanner <mat@brain-dump.org>2015-08-01 13:20:40 +0200
commit25beaeb21f3d0b2fcd9b6c612cd2d7cb25291a28 (patch)
treea864a4c03a7e37814ae46ff8de24fc956eb4c5b4 /config.def.h
parent99753fa1f144b6e33c06b5a9a93725125b5e085a (diff)
downloadvis-25beaeb21f3d0b2fcd9b6c612cd2d7cb25291a28.tar.gz
vis-25beaeb21f3d0b2fcd9b6c612cd2d7cb25291a28.tar.xz
vis: support `ae` and `ie` 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 181dc7c..1a3a24c 100644
--- a/config.def.h
+++ b/config.def.h
@@ -165,6 +165,7 @@ static KeyBinding vis_textobjs[] = {
{ { NONE('a'), NONE('"') }, textobj, { .i = TEXT_OBJ_OUTER_QUOTE } },
{ { NONE('a'), NONE('\'') }, textobj, { .i = TEXT_OBJ_OUTER_SINGLE_QUOTE } },
{ { NONE('a'), NONE('`') }, textobj, { .i = TEXT_OBJ_OUTER_BACKTICK } },
+ { { NONE('a'), NONE('e') }, textobj, { .i = TEXT_OBJ_OUTER_ENTIRE } },
{ /* empty last element, array terminator */ },
};
@@ -186,6 +187,7 @@ static KeyBinding vis_inner_textobjs[] = {
{ { NONE('i'), NONE('"') }, textobj, { .i = TEXT_OBJ_INNER_QUOTE } },
{ { NONE('i'), NONE('\'') }, textobj, { .i = TEXT_OBJ_INNER_SINGLE_QUOTE } },
{ { NONE('i'), NONE('`') }, textobj, { .i = TEXT_OBJ_INNER_BACKTICK } },
+ { { NONE('i'), NONE('e') }, textobj, { .i = TEXT_OBJ_INNER_ENTIRE } },
{ /* empty last element, array terminator */ },
};