diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2015-04-21 08:52:49 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2015-04-21 11:06:10 +0200 |
| commit | d941d9cbc8891c745c11edfd6211c3bb69626991 (patch) | |
| tree | b50c3fdcff18af7eb937916cd9d9c44529fb6281 /config.def.h | |
| parent | aca46a0da8969f15d9356c149687f961b6852516 (diff) | |
| download | vis-d941d9cbc8891c745c11edfd6211c3bb69626991.tar.gz vis-d941d9cbc8891c745c11edfd6211c3bb69626991.tar.xz | |
Implement ';' and ','
This fixes #45
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index e91eddd..bb7d86e 100644 --- a/config.def.h +++ b/config.def.h @@ -142,6 +142,8 @@ static KeyBinding vis_movements[] = { { { NONE('F') }, movement_key, { .i = MOVE_LEFT_TO } }, { { NONE('t') }, movement_key, { .i = MOVE_RIGHT_TILL } }, { { NONE('T') }, movement_key, { .i = MOVE_LEFT_TILL } }, + { { NONE(';') }, totill_repeat, { NULL } }, + { { NONE(',') }, totill_reverse,{ NULL } }, { { NONE('/') }, prompt_search,{ .s = "/" } }, { { NONE('?') }, prompt_search,{ .s = "?" } }, { /* empty last element, array terminator */ }, |
