all repos — st @ ee3e0a9fd032bb35eea5c46fc0a9efcd6a80579a

st (suckless terminal) config

Save cursor position in terminal reset

After terminal reset saved terminal position is reset to 0, allowing know
where cursor will go in next restore cursor operation.
---
 st.c |    2 ++
 1 file changed, 2 insertions(+)
Roberto E. Vargas Caballero k0ga@shike2.com
commit

ee3e0a9fd032bb35eea5c46fc0a9efcd6a80579a

parent

ba9d0365ac7e138b643d7179457f8465a1dc1191

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

jump to
M st.cst.c

@@ -1076,6 +1076,8 @@ term.bot = term.row - 1;

term.mode = MODE_WRAP; tclearregion(0, 0, term.col-1, term.row-1); + tmoveto(0, 0); + tcursor(CURSOR_SAVE); } void