aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-07-02 21:22:57 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-07-02 21:22:57 +0000
commit892d1b534e401c081b90e15604e5e65978ab429a (patch)
treed1f18e060bbc3bbf45d9b109b86713abdcdab0df /tmux.c
parent089f727f5475cfb6ffadf8344a8b405e381d6002 (diff)
downloadrtmux-892d1b534e401c081b90e15604e5e65978ab429a.tar.gz
rtmux-892d1b534e401c081b90e15604e5e65978ab429a.tar.bz2
rtmux-892d1b534e401c081b90e15604e5e65978ab429a.zip
Split emacs/vi keys into seperate tables.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index f6505c81..71da57c3 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.71 2008-06-29 21:03:57 nicm Exp $ */
+/* $Id: tmux.c,v 1.72 2008-07-02 21:22:57 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -223,6 +223,7 @@ main(int argc, char **argv)
options_set_number(&global_options, "set-titles", 1);
options_set_number(&global_options, "buffer-limit", 9);
options_set_number(&global_options, "remain-by-default", 0);
+ options_set_number(&global_options, "mode-keys", MODEKEY_EMACS);
if (cfg_file == NULL) {
home = getenv("HOME");