aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-06-03 17:04:16 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-06-03 17:04:16 +0000
commit655a1aea6cb6121c57240fee7ea4c85c478865c2 (patch)
tree9d446f464f3b0f27367a9f9547e6d47c3b46cde5 /tmux.c
parent6521427a451b4044b9bf035d54c594cb1453ba48 (diff)
downloadrtmux-655a1aea6cb6121c57240fee7ea4c85c478865c2.tar.gz
rtmux-655a1aea6cb6121c57240fee7ea4c85c478865c2.tar.bz2
rtmux-655a1aea6cb6121c57240fee7ea4c85c478865c2.zip
Do not set the window title by default (make set-titles option default to off),
wiping over the title is rude and annoying. Agreed by several.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index 71df2bfb..491e49d4 100644
--- a/tmux.c
+++ b/tmux.c
@@ -287,7 +287,7 @@ main(int argc, char **argv)
options_set_number(&global_options, "prefix", '\002');
options_set_number(&global_options, "repeat-time", 500);
options_set_number(&global_options, "set-remain-on-exit", 0);
- options_set_number(&global_options, "set-titles", 1);
+ options_set_number(&global_options, "set-titles", 0);
options_set_number(&global_options, "status", 1);
options_set_number(&global_options, "status-attr", GRID_ATTR_REVERSE);
options_set_number(&global_options, "status-bg", 2);