aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-27 17:52:12 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-27 17:52:12 +0200
commitab264837f7c127ba8ff4666f9c4ed94efd485af0 (patch)
tree90c2a14e18b8523f0bb8d3c7f7b9eb948cc84628 /config.def.h
parent63c127788c6f5309debf9d24aafe868e06ee4e4a (diff)
downloadvis-ab264837f7c127ba8ff4666f9c4ed94efd485af0.tar.gz
vis-ab264837f7c127ba8ff4666f9c4ed94efd485af0.tar.xz
Implement '#'
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 87bff1f..ebc9057 100644
--- a/config.def.h
+++ b/config.def.h
@@ -144,7 +144,8 @@ static KeyBinding vis_movements[] = {
{ { NONE('H') }, movement, { .i = MOVE_WINDOW_LINE_TOP } },
{ { NONE('M') }, movement, { .i = MOVE_WINDOW_LINE_MIDDLE } },
{ { NONE('L') }, movement, { .i = MOVE_WINDOW_LINE_BOTTOM } },
- { { NONE('*') }, movement, { .i = MOVE_SEARCH_WORD } },
+ { { NONE('*') }, movement, { .i = MOVE_SEARCH_WORD_FORWARD } },
+ { { NONE('#') }, movement, { .i = MOVE_SEARCH_WORD_BACKWARD} },
{ { NONE('f') }, movement_key, { .i = MOVE_RIGHT_TO } },
{ { NONE('F') }, movement_key, { .i = MOVE_LEFT_TO } },
{ { NONE('t') }, movement_key, { .i = MOVE_RIGHT_TILL } },