vendor: github.com/morikuni/aec v1.1.0

full diff: https://github.com/morikuni/aec/compare/v1.0.0...v1.1.0

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-12-11 17:30:12 +01:00
parent 91d44d6caf
commit 5c406f5ee4
4 changed files with 9 additions and 7 deletions
+4 -2
View File
@@ -129,8 +129,10 @@ func init() {
All: 2,
}
Save = newAnsi(esc + "s")
Restore = newAnsi(esc + "u")
// Save use both SCO (ESC[s) and DEC (ESC7) sequences as those were never standardised as part of the ANSI
Save = newAnsi(esc + "s" + "\x1b7")
// Restore use both SCO (ESC[u) and DEC (ESC8) and DEC sequences as those were never standardised as part of the ANSI
Restore = newAnsi(esc + "u" + "\x1b8")
Hide = newAnsi(esc + "?25l")
Show = newAnsi(esc + "?25h")
Report = newAnsi(esc + "6n")