From 636c369d86b6452a89f54c497a9816ca1f866d4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Aptel?= Date: Sun, 21 Feb 2010 14:28:32 +0100 Subject: [PATCH] added VT100 save&load cursor support. --- st.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/st.c b/st.c index 15ff4f8..84292f5 100644 --- a/st.c +++ b/st.c @@ -868,6 +868,12 @@ tputc(char c) { 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;