diff options
author | nicm <nicm> | 2020-10-05 09:53:01 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-10-05 09:53:01 +0000 |
commit | c8f3736b07a0ae4c73bd6517ab8c8596d74c1c67 (patch) | |
tree | 236ef67629c55e32c29d994cb134db09c759ae31 /tty-term.c | |
parent | f2dfc2759ea13c1e098a21bbedc9ac2c26f0b3b9 (diff) | |
download | rtmux-c8f3736b07a0ae4c73bd6517ab8c8596d74c1c67.tar.gz rtmux-c8f3736b07a0ae4c73bd6517ab8c8596d74c1c67.tar.bz2 rtmux-c8f3736b07a0ae4c73bd6517ab8c8596d74c1c67.zip |
Use the setal capability as well as (tmux's) Setulc.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -245,6 +245,7 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_KUP6] = { TTYCODE_STRING, "kUP6" }, [TTYC_KUP7] = { TTYCODE_STRING, "kUP7" }, [TTYC_MS] = { TTYCODE_STRING, "Ms" }, + [TTYC_OL] = { TTYCODE_STRING, "ol" }, [TTYC_OP] = { TTYCODE_STRING, "op" }, [TTYC_REV] = { TTYCODE_STRING, "rev" }, [TTYC_RGB] = { TTYCODE_FLAG, "RGB" }, @@ -255,6 +256,7 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_RMKX] = { TTYCODE_STRING, "rmkx" }, [TTYC_SETAB] = { TTYCODE_STRING, "setab" }, [TTYC_SETAF] = { TTYCODE_STRING, "setaf" }, + [TTYC_SETAL] = { TTYCODE_STRING, "setal" }, [TTYC_SETRGBB] = { TTYCODE_STRING, "setrgbb" }, [TTYC_SETRGBF] = { TTYCODE_STRING, "setrgbf" }, [TTYC_SETULC] = { TTYCODE_STRING, "Setulc" }, |