aboutsummaryrefslogtreecommitdiff
path: root/tty.c
diff options
context:
space:
mode:
authornicm <nicm>2020-04-16 15:14:25 +0000
committernicm <nicm>2020-04-16 15:14:25 +0000
commit363d950ac0c0c24f446d9ebc3421d1c38395f872 (patch)
treee6711e0b60942f4381f465e0049c2b51966887c0 /tty.c
parent5ec80bd249a37147207ec2ef420086336ccf78a8 (diff)
downloadrtmux-363d950ac0c0c24f446d9ebc3421d1c38395f872.tar.gz
rtmux-363d950ac0c0c24f446d9ebc3421d1c38395f872.tar.bz2
rtmux-363d950ac0c0c24f446d9ebc3421d1c38395f872.zip
Send secondary device attributes instead of primary which gives us a bit
more useful information on some terminals.
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tty.c b/tty.c
index 239d1cde..06ae6d31 100644
--- a/tty.c
+++ b/tty.c
@@ -364,7 +364,7 @@ tty_send_requests(struct tty *tty)
if (tty_term_flag(tty->term, TTYC_XT)) {
if (~tty->flags & TTY_HAVEDA)
- tty_puts(tty, "\033[c");
+ tty_puts(tty, "\033[>c");
if (~tty->flags & TTY_HAVEDSR)
tty_puts(tty, "\033[1337n");
} else
@@ -1175,8 +1175,7 @@ tty_clear_area(struct tty *tty, struct window_pane *wp, u_int py, u_int ny,
* background colour isn't default (because it doesn't work
* after SGR 0).
*/
- if ((tty_get_flags(tty) & TERM_DECFRA) &&
- !COLOUR_DEFAULT(bg)) {
+ if ((tty_get_flags(tty) & TERM_DECFRA) && !COLOUR_DEFAULT(bg)) {
xsnprintf(tmp, sizeof tmp, "\033[32;%u;%u;%u;%u$x",
py + 1, px + 1, py + ny, px + nx);
tty_puts(tty, tmp);