st
simple terminal
git clone https://9o.is/git/st.git
commit 5b1af64449caa7f9d1e6f467fbe0bdc85dc3bd0e parent 05ba22885809d0c2122123c4fb5ac9728f59a17a Author: Quentin Carbonneaux <q@c9x.me> Date: Mon, 18 Aug 2014 19:20:41 +0200 reset the alt screen in treset Signed-off-by: Roberto E. Vargas Caballero <k0ga@shike2.com> Diffstat:
| M | st.c | | | 9 | ++++++--- |
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/st.c b/st.c @@ -1356,9 +1356,12 @@ treset(void) { memset(term.trantbl, sizeof(term.trantbl), CS_USA); term.charset = 0; - tclearregion(0, 0, term.col-1, term.row-1); - tmoveto(0, 0); - tcursor(CURSOR_SAVE); + for(i = 0; i < 2; i++) { + tmoveto(0, 0); + tcursor(CURSOR_SAVE); + tclearregion(0, 0, term.col-1, term.row-1); + tswapscreen(); + } } void