diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-09-11 09:41:15 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-09-11 09:41:15 +0200 |
| commit | d9fba9df3c9c3670a466c1356426d07da8254416 (patch) | |
| tree | 10a81f884c3cf31df804fa5ea14e24a3192197b0 | |
| parent | c6657192ffc40a6a8375e4e65f760935c12eecd7 (diff) | |
| download | vis-d9fba9df3c9c3670a466c1356426d07da8254416.tar.gz vis-d9fba9df3c9c3670a466c1356426d07da8254416.tar.xz | |
In visual mode 'v' should switch to normal mode
| -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 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 } }, |
