mirror of
https://github.com/tmux/tmux.git
synced 2025-01-12 11:18:48 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
bc36700d05
1
input.c
1
input.c
@ -773,6 +773,7 @@ input_save_state(struct input_ctx *ictx)
|
|||||||
ictx->old_mode = s->mode;
|
ictx->old_mode = s->mode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Restore screen state. */
|
||||||
static void
|
static void
|
||||||
input_restore_state(struct input_ctx *ictx)
|
input_restore_state(struct input_ctx *ictx)
|
||||||
{
|
{
|
||||||
|
6
tty.c
6
tty.c
@ -338,8 +338,10 @@ tty_start_tty(struct tty *tty)
|
|||||||
tty->flags |= TTY_FOCUS;
|
tty->flags |= TTY_FOCUS;
|
||||||
tty_puts(tty, "\033[?1004h");
|
tty_puts(tty, "\033[?1004h");
|
||||||
}
|
}
|
||||||
tty_puts(tty, "\033[c\033[1337n"); /* DA and DSR */
|
if (~tty->flags & TTY_HAVEDA)
|
||||||
|
tty_puts(tty, "\033[c");
|
||||||
|
if (~tty->flags & TTY_HAVEDSR)
|
||||||
|
tty_puts(tty, "\033[1337n");
|
||||||
} else
|
} else
|
||||||
tty->flags |= (TTY_HAVEDA|TTY_HAVEDSR);
|
tty->flags |= (TTY_HAVEDA|TTY_HAVEDSR);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user