From 1dfef906f43eb1d950d71cb6e44d6b83e2d158f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Mon, 27 Jul 2015 22:00:53 +0200 Subject: vis: CTRL+J and CTRL+K creates a new cursor on the line below/above --- config.def.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h index 92276ea..c88d54f 100644 --- a/config.def.h +++ b/config.def.h @@ -360,6 +360,8 @@ static KeyBinding vis_marks_set[] = { static KeyBinding vis_mode_normal[] = { { { NONE(ESC) }, cursors_clear, { } }, + { { CONTROL('K') }, cursors_new, { .i = -1 } }, + { { CONTROL('J') }, cursors_new, { .i = +1 } }, { { CONTROL('w'), NONE('n') }, cmd, { .s = "open" } }, { { CONTROL('w'), NONE('c') }, cmd, { .s = "q" } }, { { CONTROL('w'), NONE('s') }, cmd, { .s = "split" } }, -- cgit v1.2.3