aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-01-12 23:37:02 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-01-12 23:37:02 +0000
commit60bfaf5baef7872c6e6e57ac33cf928afd198a55 (patch)
tree4d62d3b54088a1ec4fb16f993c90b24b222fdf5b /tmux.c
parente099a78b4cb8a746387703f8b8a5baf072337713 (diff)
downloadrtmux-60bfaf5baef7872c6e6e57ac33cf928afd198a55.tar.gz
rtmux-60bfaf5baef7872c6e6e57ac33cf928afd198a55.tar.bz2
rtmux-60bfaf5baef7872c6e6e57ac33cf928afd198a55.zip
prefix-time option to allow multiple commands without additional prefixes.
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 580c59e4..d2493ef5 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.92 2009-01-11 00:48:42 nicm Exp $ */
+/* $Id: tmux.c,v 1.93 2009-01-12 23:37:02 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -234,6 +234,7 @@ main(int argc, char **argv)
options_set_number(&global_options, "message-bg", 3);
options_set_number(&global_options, "message-fg", 0);
options_set_number(&global_options, "prefix", META);
+ options_set_number(&global_options, "prefix-time", 300);
options_set_number(&global_options, "set-titles", 1);
options_set_number(&global_options, "lock-after-time", 1800);
options_set_number(&global_options, "status", 1);