aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-25 19:19:05 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-25 19:19:05 +0200
commit62682f0d351890f3050b3251d5d26448bf922109 (patch)
treeea2b813f71abe6713308fe1a4675520b79e1247b /config.def.h
parent334e7f278f18889582c51bd9aceb469e716cddea (diff)
downloadvis-62682f0d351890f3050b3251d5d26448bf922109.tar.gz
vis-62682f0d351890f3050b3251d5d26448bf922109.tar.xz
Add infrastructure for word (lowercase) motions
This unfortunately doesn't work as is which is why it is not actually hooked up to key bindings.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 6b70da1..035f7c9 100644
--- a/config.def.h
+++ b/config.def.h
@@ -125,6 +125,7 @@ static KeyBinding vis_movements[] = {
{ { NONE('w') }, movement, { .i = MOVE_LONGWORD_START_NEXT } },
{ { NONE('W') }, movement, { .i = MOVE_LONGWORD_START_NEXT } },
{ { NONE('g'), NONE('e') }, movement, { .i = MOVE_LONGWORD_END_PREV } },
+ { { NONE('g'), NONE('E') }, movement, { .i = MOVE_LONGWORD_END_PREV } },
{ { NONE('e') }, movement, { .i = MOVE_LONGWORD_END_NEXT } },
{ { NONE('E') }, movement, { .i = MOVE_LONGWORD_END_NEXT } },
{ { NONE('{') }, movement, { .i = MOVE_PARAGRAPH_PREV } },