From 13c0512b2644d3b0292fe505cc62dc035932d0e2 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Tue, 16 Jan 2024 01:13:08 +0100 Subject: world: fix hex escape codes --- world/tty-commands.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- cgit v1.2.3