diff options
author | nicm <nicm> | 2019-06-27 15:17:41 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-06-27 15:17:41 +0000 |
commit | dae2868d1227b95fd076fb4a5efa6256c7245943 (patch) | |
tree | e9c0285c193c9e3463b4e3d45cfd71a7668aedfa /tty-term.c | |
parent | 3a6d90adadfcd4aa6b513df7f8ae5c4dcc05a6dc (diff) | |
download | rtmux-dae2868d1227b95fd076fb4a5efa6256c7245943.tar.gz rtmux-dae2868d1227b95fd076fb4a5efa6256c7245943.tar.bz2 rtmux-dae2868d1227b95fd076fb4a5efa6256c7245943.zip |
Add support for underscore colours with Setulc capability, mostly from
Kai Moschcau.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -246,6 +246,7 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_SETAF] = { TTYCODE_STRING, "setaf" }, [TTYC_SETRGBB] = { TTYCODE_STRING, "setrgbb" }, [TTYC_SETRGBF] = { TTYCODE_STRING, "setrgbf" }, + [TTYC_SETULC] = { TTYCODE_STRING, "Setulc" }, [TTYC_SE] = { TTYCODE_STRING, "Se" }, [TTYC_SGR0] = { TTYCODE_STRING, "sgr0" }, [TTYC_SITM] = { TTYCODE_STRING, "sitm" }, |