From 87b316b3f96a22fd85654cd7bd091f2cac1c6691 Mon Sep 17 00:00:00 2001 From: theimpostor Date: Thu, 21 Nov 2024 07:53:23 -0600 Subject: use more portable escape sequence to terminate string --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index f0d359a..42c1107 100644 --- a/main.go +++ b/main.go @@ -32,7 +32,7 @@ const ( var ( oscOpen string = OSC + "c;" - oscClose string = string(BEL) + oscClose string = string(ESC) + string(BS) isScreen bool isTmux bool isZellij bool -- cgit v1.2.3