all repos — st @ 636c369d86b6452a89f54c497a9816ca1f866d4e

st (suckless terminal) config

added VT100 save&load cursor support.
Aurélien Aptel aurelien.aptel@gmail.com
commit

636c369d86b6452a89f54c497a9816ca1f866d4e

parent

3ba517e796e0c7a73c5030ad791be1db36a8cec5

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

jump to
M st.cst.c

@@ -868,6 +868,12 @@ case '>': /* DECPNM */

term.mode &= ~MODE_APPKEYPAD; term.esc = 0; break; + case '7': + tcursor(CURSOR_SAVE); + break; + case '8': + tcursor(CURSOR_LOAD); + break; default: fprintf(stderr, "erresc: unknown sequence ESC %02X '%c'\n", c, isprint(c)?c:'.'); term.esc = 0;