From d95f7600f30f80a80af590e7b1386b065d6fe8e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Tue, 31 Mar 2015 10:31:10 +0200 Subject: Add hack to make CTRL-w CTRL-h work --- config.def.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 1d2b0f9..ee6d4ae 100644 --- a/config.def.h +++ b/config.def.h @@ -390,8 +390,9 @@ static KeyBinding vis_mode_normal[] = { { { CONTROL('w'), CONTROL('j') }, call, { .f = editor_window_next } }, { { CONTROL('w'), CONTROL('l') }, call, { .f = editor_window_next } }, { { CONTROL('w'), CONTROL('k') }, call, { .f = editor_window_prev } }, - { { CONTROL('w'), CONTROL('h') }, call, { .f = editor_window_prev } }, { { CONTROL('w'), CONTROL('w') }, call, { .f = editor_window_next } }, + { { CONTROL('w'), CONTROL('h') }, call, { .f = editor_window_prev } }, + { { CONTROL('w'), KEY(BACKSPACE) }, call, { .f = editor_window_prev } }, { { CONTROL('B') }, wscroll, { .i = -PAGE } }, { { CONTROL('F') }, wscroll, { .i = +PAGE } }, { { CONTROL('U') }, wscroll, { .i = -PAGE_HALF } }, -- cgit v1.2.3