aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-10 22:36:25 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-10 22:36:25 +0200
commitf854cefe0e8cb1a7532fbd5195ba89a59646b11b (patch)
treee0d6ccb6d6768225b0495b25dfd5c703481996cd /config.def.h
parentaa8bbbbe06646d9264d7780d9962ae4e9038ac40 (diff)
downloadvis-f854cefe0e8cb1a7532fbd5195ba89a59646b11b.tar.gz
vis-f854cefe0e8cb1a7532fbd5195ba89a59646b11b.tar.xz
Add movement 'W'
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 edf34ca..8a125b1 100644
--- a/config.def.h
+++ b/config.def.h
@@ -112,6 +112,7 @@ static KeyBinding vis_movements[] = {
{ { NONE('b') }, movement, { .i = MOVE_WORD_START_PREV } },
{ { NONE('B') }, movement, { .i = MOVE_WORD_START_PREV } },
{ { NONE('w') }, movement, { .i = MOVE_WORD_START_NEXT } },
+ { { NONE('W') }, movement, { .i = MOVE_WORD_START_NEXT } },
{ { NONE('g'), NONE('e') }, movement, { .i = MOVE_WORD_END_PREV } },
{ { NONE('e') }, movement, { .i = MOVE_WORD_END_NEXT } },
{ { NONE('E') }, movement, { .i = MOVE_WORD_END_NEXT } },