all repos — st @ 177d888dff2fdf987dfa7fc3eb8495fa107879ad

st (suckless terminal) config

reset the alt screen in treset

Signed-off-by: Roberto E. Vargas Caballero <k0ga@shike2.com>
Quentin Carbonneaux q@c9x.me
commit

177d888dff2fdf987dfa7fc3eb8495fa107879ad

parent

fa04911c91a049f397337d3436c4a5692da558fa

1 files changed, 6 insertions(+), 3 deletions(-)

jump to
M st.cst.c

@@ -1356,9 +1356,12 @@ term.mode = MODE_WRAP;

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