aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-27 15:15:20 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-27 15:15:20 +0200
commit83acb5c15dd2cd49224842bfcd2c2ba5ad761a85 (patch)
treeb8399d9e6c991dac3e626adfe7ed97e7e35de53f /config.def.h
parent46b8671b8fa61a291b498db11c4bb3f4a50e2329 (diff)
downloadvis-83acb5c15dd2cd49224842bfcd2c2ba5ad761a85.tar.gz
vis-83acb5c15dd2cd49224842bfcd2c2ba5ad761a85.tar.xz
Implement proper distinction between word and WORD
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h
index 474657c..bed3c80 100644
--- a/config.def.h
+++ b/config.def.h
@@ -120,13 +120,13 @@ static KeyBinding vis_movements[] = {
{ { NONE('g'), NONE('_') }, movement, { .i = MOVE_LINE_FINISH } },
{ { NONE('$') }, movement, { .i = MOVE_LINE_LASTCHAR } },
{ { NONE('%') }, movement, { .i = MOVE_BRACKET_MATCH } },
- { { NONE('b') }, movement, { .i = MOVE_LONGWORD_START_PREV } },
+ { { NONE('b') }, movement, { .i = MOVE_WORD_START_PREV } },
{ { NONE('B') }, movement, { .i = MOVE_LONGWORD_START_PREV } },
- { { NONE('w') }, movement, { .i = MOVE_LONGWORD_START_NEXT } },
+ { { NONE('w') }, movement, { .i = MOVE_WORD_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_WORD_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_WORD_END_NEXT } },
{ { NONE('E') }, movement, { .i = MOVE_LONGWORD_END_NEXT } },
{ { NONE('{') }, movement, { .i = MOVE_PARAGRAPH_PREV } },
{ { NONE('}') }, movement, { .i = MOVE_PARAGRAPH_NEXT } },