diff options
Diffstat (limited to 'world')
-rw-r--r-- | world/tty-commands.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/world/tty-commands.scm b/world/tty-commands.scm index 90d896e..a5f50db 100644 --- a/world/tty-commands.scm +++ b/world/tty-commands.scm @@ -3,7 +3,7 @@ ;; Clear the screen better: ;; https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h2-The-Alternate-Screen-Buffer -(define csi-lead "\x1b[") +(define csi-lead "\x1b;[") (define (str-csi . args) (apply string-append csi-lead args)) |