all repos — st @ 8f11e1cd034ff28ca47bb4955505db7fa8016ba8

st (suckless terminal) config

On terminal resize, clear the alt screen with its own cursor.

Currently the alternate screen get messed up on resize if it has
different colors or mode.
Colona colona@ycc.fr
commit

8f11e1cd034ff28ca47bb4955505db7fa8016ba8

parent

844c503c800e5e1db1e409f5db729431ee2e5c00

1 files changed, 2 insertions(+), 0 deletions(-)

jump to
M st.cst.c

@@ -2674,7 +2674,9 @@ }

if(0 < col && minrow < row) { tclearregion(0, minrow, col - 1, row - 1); } + tcursor(CURSOR_SAVE); tswapscreen(); + tcursor(CURSOR_LOAD); } while(orig != term.line); return (slide > 0);