diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-09-17 14:45:26 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-09-17 14:46:27 +0200 |
| commit | 4ead2dfefc8b36b393f456455cc05cd01f758c46 (patch) | |
| tree | 7e07ef8ea8de05372de57a2a05f9f9cc7df37645 /config.def.h | |
| parent | 89bc5a0344deafdeddde58b625376f23602c075b (diff) | |
| download | vis-4ead2dfefc8b36b393f456455cc05cd01f758c46.tar.gz vis-4ead2dfefc8b36b393f456455cc05cd01f758c46.tar.xz | |
Implement left shift operator
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 d3c0e88..8d5d605 100644 --- a/config.def.h +++ b/config.def.h @@ -199,6 +199,7 @@ static KeyBinding vis_operators[] = { { { NONE('y') }, operator, { .i = OP_YANK } }, { { NONE('p') }, operator, { .i = OP_PUT } }, { { NONE('>') }, operator, { .i = OP_SHIFT_RIGHT } }, + { { NONE('<') }, operator, { .i = OP_SHIFT_LEFT } }, { /* empty last element, array terminator */ }, }; |
