Don't send initialisation strings is1/2/3 (barely anything else does) and move

smcup to the first and rmcup to the last sequences output to the terminal. This
allows tmux to use the alternate screen (smcup/rmcup) when available.
This commit is contained in:
Nicholas Marriott 2009-07-12 17:08:37 +00:00
parent d7b4aa0ff3
commit fd0971542f
1 changed files with 4 additions and 6 deletions

10
tty.c
View File

@ -1,4 +1,4 @@
/* $Id: tty.c,v 1.112 2009-07-08 18:03:03 nicm Exp $ */
/* $Id: tty.c,v 1.113 2009-07-12 17:08:37 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -161,11 +161,8 @@ tty_start_tty(struct tty *tty)
fatal("ioctl(TIOCFLUSH)");
#endif
tty_putcode(tty, TTYC_IS1);
tty_putcode(tty, TTYC_IS2);
tty_putcode(tty, TTYC_IS3);
tty_putcode(tty, TTYC_SMCUP);
tty_putcode(tty, TTYC_SMKX);
tty_putcode(tty, TTYC_ENACS);
tty_putcode(tty, TTYC_CLEAR);
@ -204,12 +201,13 @@ tty_stop_tty(struct tty *tty)
tty_raw(tty, tty_term_string(tty->term, TTYC_RMACS));
tty_raw(tty, tty_term_string(tty->term, TTYC_SGR0));
tty_raw(tty, tty_term_string(tty->term, TTYC_RMKX));
tty_raw(tty, tty_term_string(tty->term, TTYC_RMCUP));
tty_raw(tty, tty_term_string(tty->term, TTYC_CLEAR));
tty_raw(tty, tty_term_string(tty->term, TTYC_CNORM));
if (tty_term_has(tty->term, TTYC_KMOUS))
tty_raw(tty, "\033[?1000l");
tty_raw(tty, tty_term_string(tty->term, TTYC_RMCUP));
}
#if 0