diff options
Diffstat (limited to 'util/ansi.js')
-rw-r--r-- | util/ansi.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/ansi.js b/util/ansi.js index 0ee1bc1..564fdf8 100644 --- a/util/ansi.js +++ b/util/ansi.js @@ -96,6 +96,12 @@ const ansi = { return `${ESC}[7m` }, + invertOff() { + // Un-inverts the foreground and backgrund colors. + + return `${ESC}[27m` + }, + requestCursorPosition() { // Requests the position of the cursor. // Expect a stdin-result '\ESC[l;cR', where l is the line number (1-based), |