From 514b6e1ddf2b086378cc689bb87765d259ac9732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Thu, 11 Sep 2014 10:24:01 +0200 Subject: Add/cleanup window commands Ctrl-{n,s,q} --- config.def.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h index 7b99cf5..e8247ff 100644 --- a/config.def.h +++ b/config.def.h @@ -333,7 +333,9 @@ static KeyBinding vis_marks_set[] = { }; static KeyBinding vis_normal[] = { - { { CONTROL('w'), NONE('s') }, split, { NULL } }, + { { CONTROL('w'), NONE('n') }, winnew, { .s = NULL } }, + { { CONTROL('w'), NONE('q') }, winclose, { .s = NULL } }, + { { CONTROL('w'), NONE('s') }, winsplit, { .b = false } }, { { CONTROL('w'), NONE('j') }, call, { .f = editor_window_next } }, { { CONTROL('w'), NONE('k') }, call, { .f = editor_window_prev } }, { { CONTROL('F') }, cursor, { .m = window_page_up } }, -- cgit v1.2.3