diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-09-25 19:19:05 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-09-25 19:19:05 +0200 |
| commit | 62682f0d351890f3050b3251d5d26448bf922109 (patch) | |
| tree | ea2b813f71abe6713308fe1a4675520b79e1247b /config.def.h | |
| parent | 334e7f278f18889582c51bd9aceb469e716cddea (diff) | |
| download | vis-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.h | 1 |
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 } }, |
