diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-01-16 01:13:08 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-01-18 22:48:57 +0100 |
commit | 13c0512b2644d3b0292fe505cc62dc035932d0e2 (patch) | |
tree | 7adbd3787d526a87f3ff046b7f09ad26e3fb4f23 /world | |
parent | 42f3c3b9493e39d20ec43a7643f8e6900da331c1 (diff) |
world: fix hex escape codes
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)) |