diff options
author | nicm <nicm> | 2015-04-19 21:05:27 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-04-19 21:05:27 +0000 |
commit | ee123c248951450100475717f5bd45f292d9bb4d (patch) | |
tree | 84a865000a9d0ba60d891114c88f6d36c283b5c3 /tty-term.c | |
parent | 4a7587931ce54aa1a94a104480113d658c295b6b (diff) | |
download | rtmux-ee123c248951450100475717f5bd45f292d9bb4d.tar.gz rtmux-ee123c248951450100475717f5bd45f292d9bb4d.tar.bz2 rtmux-ee123c248951450100475717f5bd45f292d9bb4d.zip |
Support setting the default window and pane background colours (window
and active pane via window-style and window-active-style options, an
individual pane by a new select-pane -P flag). From J Raynor.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -35,6 +35,7 @@ struct tty_terms tty_terms = LIST_HEAD_INITIALIZER(tty_terms); const struct tty_term_code_entry tty_term_codes[NTTYCODE] = { { TTYC_ACSC, TTYCODE_STRING, "acsc" }, { TTYC_AX, TTYCODE_FLAG, "AX" }, + { TTYC_BCE, TTYCODE_FLAG, "bce" }, { TTYC_BEL, TTYCODE_STRING, "bel" }, { TTYC_BLINK, TTYCODE_STRING, "blink" }, { TTYC_BOLD, TTYCODE_STRING, "bold" }, |