CE edit save/restore terminal state
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m16s

This commit is contained in:
2026-03-07 01:58:47 +01:00
parent 75635bcc2e
commit eaec32975a
2 changed files with 6 additions and 3 deletions

View File

@@ -10,8 +10,8 @@
#define ANSIQ_SCR_CLR2LEND ANSIQ_ESC"[0K" // Clear to end of line
#define ANSIQ_SCR_CLR2LBEG ANSIQ_ESC"[1K" // Clear to begining of line
#define ANSIQ_SCR_CLR_LINE ANSIQ_ESC"[2K" // Clear entire line
#define ANSIQ_SCR_RESTORE ANSIQ_ESC"[?47l"
#define ANSIQ_SCR_SAVE ANSIQ_ESC"[?47h"
#define ANSIQ_SCR_RESTORE ANSIQ_ESC"[?1049l"
#define ANSIQ_SCR_SAVE ANSIQ_ESC"[?1049h"
/* clang-format on */
#endif /* ANSIQ_SCREEN_H */