aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-24 20:16:52 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-24 20:16:52 +0200
commit34e9b2ebcc73160d6d176cf166ecd6345a70433d (patch)
tree7bdd30ace25a4682c25bd439cc83748563cd6947 /config.def.h
parentc4be8388aa0ccc678c765be065ef5563c3ff7c12 (diff)
downloadvis-34e9b2ebcc73160d6d176cf166ecd6345a70433d.tar.gz
vis-34e9b2ebcc73160d6d176cf166ecd6345a70433d.tar.xz
Implement window related keys (CTRL-W ...) in terms of ':'-commands
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index faa7e06..f07369f 100644
--- a/config.def.h
+++ b/config.def.h
@@ -360,8 +360,9 @@ static KeyBinding vis_marks_set[] = {
static KeyBinding vis_mode_normal[] = {
{ { CONTROL('w'), NONE('n') }, winnew, { .s = NULL } },
- { { CONTROL('w'), NONE('q') }, winclose, { .s = NULL } },
- { { CONTROL('w'), NONE('s') }, winsplit, { .b = false } },
+ { { CONTROL('w'), NONE('c') }, cmd, { .s = "q" } },
+ { { 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('k') }, call, { .f = editor_window_prev } },
{ { CONTROL('B') }, wscroll, { .i = -PAGE } },