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-features.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-features.c')
-rw-r--r-- | tty-features.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tty-features.c b/tty-features.c index 5891e2c3..f167a2d3 100644 --- a/tty-features.c +++ b/tty-features.c @@ -112,6 +112,7 @@ static const struct tty_feature tty_feature_overline = { static const char *tty_feature_usstyle_capabilities[] = { "Smulx=\\E[4::%p1%dm", "Setulc=\\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m", + "ol=\\E[59m", NULL }; static const struct tty_feature tty_feature_usstyle = { @@ -336,7 +337,7 @@ tty_default_features(int *feat, const char *name, u_int version) "256,RGB,bpaste,clipboard,strikethrough,title" { .name = "mintty", .features = TTY_FEATURES_BASE_MODERN_XTERM - ",ccolour,cstyle,extkeys,margins,overline" + ",ccolour,cstyle,extkeys,margins,overline,usstyle" }, { .name = "tmux", .features = TTY_FEATURES_BASE_MODERN_XTERM |