diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-07-20 09:15:18 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-07-20 09:15:18 +0000 |
commit | e32e0d569294ca7162f197cc7c369cd57050b193 (patch) | |
tree | 809904a7a07925d9e8400f6ec0ad0846ad597297 /cmd-set-window-option.c | |
parent | 73732ffa0585faacb53b6f7bb9f741c54251dd6d (diff) | |
download | rtmux-e32e0d569294ca7162f197cc7c369cd57050b193.tar.gz rtmux-e32e0d569294ca7162f197cc7c369cd57050b193.tar.bz2 rtmux-e32e0d569294ca7162f197cc7c369cd57050b193.zip |
New options, window-status-current-{fg,bg,attr}, to set the fg, bg and
attributes with which the current window is shown in the status line. From
Johan Friis, thanks.
Diffstat (limited to 'cmd-set-window-option.c')
-rw-r--r-- | cmd-set-window-option.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd-set-window-option.c b/cmd-set-window-option.c index 9499b46a..8c0faa0d 100644 --- a/cmd-set-window-option.c +++ b/cmd-set-window-option.c @@ -68,6 +68,9 @@ const struct set_option_entry set_window_option_table[] = { { "utf8", SET_OPTION_FLAG, 0, 0, NULL }, { "window-status-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL }, { "window-status-bg", SET_OPTION_COLOUR, 0, 0, NULL }, + { "window-status-current-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL }, + { "window-status-current-bg", SET_OPTION_COLOUR, 0, 0, NULL }, + { "window-status-current-fg", SET_OPTION_COLOUR, 0, 0, NULL }, { "window-status-fg", SET_OPTION_COLOUR, 0, 0, NULL }, { "xterm-keys", SET_OPTION_FLAG, 0, 0, NULL }, { NULL, 0, 0, 0, NULL } |