diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-29 07:04:31 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-29 07:04:31 +0000 |
commit | d90d646ca8e7ff6f97e9d11a2d746e217c7a3dcc (patch) | |
tree | e4830af4b33734b903a866103a01eebf83c2a1f1 /tmux.c | |
parent | 09a4f6a62d6a2337fc0d801827385c2b13e691be (diff) | |
download | rtmux-d90d646ca8e7ff6f97e9d11a2d746e217c7a3dcc.tar.gz rtmux-d90d646ca8e7ff6f97e9d11a2d746e217c7a3dcc.tar.bz2 rtmux-d90d646ca8e7ff6f97e9d11a2d746e217c7a3dcc.zip |
Zombie windows, requested by Will Maier.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.69 2008-06-23 22:12:29 nicm Exp $ */ +/* $Id: tmux.c,v 1.70 2008-06-29 07:04:30 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -222,6 +222,7 @@ main(int argc, char **argv) options_set_number(&global_options, "status-interval", 15); 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); if (cfg_file == NULL) { home = getenv("HOME"); |