From d9fba9df3c9c3670a466c1356426d07da8254416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Thu, 11 Sep 2014 09:41:15 +0200 Subject: In visual mode 'v' should switch to normal mode --- config.def.h | 1 + 1 file changed, 1 insertion(+) diff --git a/config.def.h b/config.def.h index ca4ed35..a9dad5a 100644 --- a/config.def.h +++ b/config.def.h @@ -363,6 +363,7 @@ static KeyBinding vis_normal[] = { static KeyBinding vis_visual[] = { { { NONE(ESC) }, switchmode, { .i = VIS_MODE_NORMAL } }, { { CONTROL('c') }, switchmode, { .i = VIS_MODE_NORMAL } }, + { { NONE('v') }, switchmode, { .i = VIS_MODE_NORMAL } }, BACKSPACE( operator, i, OP_DELETE ), { { CONTROL('H') }, operator, { .i = OP_DELETE } }, { { NONE('d') }, operator, { .i = OP_DELETE } }, -- cgit v1.2.3