From 4ead2dfefc8b36b393f456455cc05cd01f758c46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Wed, 17 Sep 2014 14:45:26 +0200 Subject: Implement left shift operator --- config.def.h | 1 + 1 file changed, 1 insertion(+) (limited to 'config.def.h') 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 */ }, }; -- cgit v1.2.3