diff options
author | 2009-07-10 05:50:54 +0000 | |
---|---|---|
committer | 2009-07-10 05:50:54 +0000 | |
commit | 1c0557154dd9da99ca78eea5be2939045765917f (patch) | |
tree | 3fed96dbea024bd1b7e233ff658a2849de775e46 /usr.bin/tmux/cmd-set-option.c | |
parent | Document display-time option which seems to have been missed. (diff) | |
download | wireguard-openbsd-1c0557154dd9da99ca78eea5be2939045765917f.tar.xz wireguard-openbsd-1c0557154dd9da99ca78eea5be2939045765917f.zip |
Add a default-terminal option to set the starting value of $TERM in new
windows.
This is "screen" by default and must be either that or something closely
related. This does makes it easier to customise it if necessary.
Diffstat (limited to 'usr.bin/tmux/cmd-set-option.c')
-rw-r--r-- | usr.bin/tmux/cmd-set-option.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd-set-option.c b/usr.bin/tmux/cmd-set-option.c index 41d5201247a..98348a5ead4 100644 --- a/usr.bin/tmux/cmd-set-option.c +++ b/usr.bin/tmux/cmd-set-option.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-set-option.c,v 1.3 2009/07/07 19:49:19 nicm Exp $ */ +/* $OpenBSD: cmd-set-option.c,v 1.4 2009/07/10 05:50:54 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -53,6 +53,7 @@ const struct set_option_entry set_option_table[NSETOPTION] = { { "buffer-limit", SET_OPTION_NUMBER, 1, INT_MAX, NULL }, { "default-command", SET_OPTION_STRING, 0, 0, NULL }, { "default-path", SET_OPTION_STRING, 0, 0, NULL }, + { "default-terminal", SET_OPTION_STRING, 0, 0, NULL }, { "display-time", SET_OPTION_NUMBER, 1, INT_MAX, NULL }, { "history-limit", SET_OPTION_NUMBER, 0, INT_MAX, NULL }, { "lock-after-time", SET_OPTION_NUMBER, 0, INT_MAX, NULL }, |