From 450b0181ebfcabd01ebf45eadb4c9b4fee825ce6 Mon Sep 17 00:00:00 2001 From: Odin Dutton Date: Mon, 30 Mar 2015 16:43:54 +0100 Subject: Add additional key mappings for window switching --- config.def.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config.def.h b/config.def.h index 88b6a67..1d2b0f9 100644 --- a/config.def.h +++ b/config.def.h @@ -384,9 +384,13 @@ static KeyBinding vis_mode_normal[] = { { { CONTROL('w'), NONE('s') }, cmd, { .s = "split" } }, { { CONTROL('w'), NONE('v') }, cmd, { .s = "vsplit" } }, { { CONTROL('w'), NONE('j') }, call, { .f = editor_window_next } }, + { { CONTROL('w'), NONE('l') }, call, { .f = editor_window_next } }, { { CONTROL('w'), NONE('k') }, call, { .f = editor_window_prev } }, + { { CONTROL('w'), NONE('h') }, call, { .f = editor_window_prev } }, { { 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('B') }, wscroll, { .i = -PAGE } }, { { CONTROL('F') }, wscroll, { .i = +PAGE } }, -- cgit v1.2.3