From 1ca3227fc6dc1cb184724216db790a0d3e4152b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Sat, 11 Apr 2015 19:56:41 +0200 Subject: Recognize g~ as case swap operator --- config.def.h | 1 + 1 file changed, 1 insertion(+) diff --git a/config.def.h b/config.def.h index 087b678..c0fd91c 100644 --- a/config.def.h +++ b/config.def.h @@ -209,6 +209,7 @@ static KeyBinding vis_operators[] = { { { NONE('<') }, operator, { .i = OP_SHIFT_LEFT } }, { { NONE('g'), NONE('U') }, changecase, { .i = +1 } }, { { NONE('~') }, changecase, { .i = 0 } }, + { { NONE('g'), NONE('~') }, changecase, { .i = 0 } }, { { NONE('g'), NONE('u') }, changecase, { .i = -1 } }, { /* empty last element, array terminator */ }, }; -- cgit v1.2.3