aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-17 14:28:45 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-17 14:46:03 +0200
commit89bc5a0344deafdeddde58b625376f23602c075b (patch)
tree3aa7672c1f4e7f3a01858f40af7efc2dd081655d /config.def.h
parent3469424ef143b125619de805eefb1480a4e2b227 (diff)
downloadvis-89bc5a0344deafdeddde58b625376f23602c075b.tar.gz
vis-89bc5a0344deafdeddde58b625376f23602c075b.tar.xz
Implement right shift operator
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 d78c076..d3c0e88 100644
--- a/config.def.h
+++ b/config.def.h
@@ -198,6 +198,7 @@ static KeyBinding vis_operators[] = {
{ { NONE('c') }, operator, { .i = OP_CHANGE } },
{ { NONE('y') }, operator, { .i = OP_YANK } },
{ { NONE('p') }, operator, { .i = OP_PUT } },
+ { { NONE('>') }, operator, { .i = OP_SHIFT_RIGHT } },
{ /* empty last element, array terminator */ },
};