diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-08-31 22:30:15 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-08-31 22:30:15 +0000 |
commit | ed3535db8a5dac03cab96f7fc220b99095423fd0 (patch) | |
tree | edbf02a4b364a56d0d58b1665fdca029acb1bd61 /cmd-set-option.c | |
parent | 2fe369831ce005827ff10dafe80532ff18c57641 (diff) | |
download | rtmux-ed3535db8a5dac03cab96f7fc220b99095423fd0.tar.gz rtmux-ed3535db8a5dac03cab96f7fc220b99095423fd0.tar.bz2 rtmux-ed3535db8a5dac03cab96f7fc220b99095423fd0.zip |
Sync OpenBSD patchset 302:
Add a new display-panes command, with two options (display-panes-colour and
display-panes-time), which displays a visual indication of the number of each
pane.
Diffstat (limited to 'cmd-set-option.c')
-rw-r--r-- | cmd-set-option.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd-set-option.c b/cmd-set-option.c index d938d732..923d58fd 100644 --- a/cmd-set-option.c +++ b/cmd-set-option.c @@ -1,4 +1,4 @@ -/* $Id: cmd-set-option.c,v 1.76 2009-08-16 19:16:27 tcunha Exp $ */ +/* $Id: cmd-set-option.c,v 1.77 2009-08-31 22:30:15 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -56,6 +56,8 @@ const struct set_option_entry set_option_table[] = { { "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-panes-colour", SET_OPTION_COLOUR, 0, 0, NULL }, + { "display-panes-time", SET_OPTION_NUMBER, 1, INT_MAX, 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 }, |