summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authortheimpostor <sahirhoda@gmail.com>2024-11-21 07:53:23 -0600
committertheimpostor <sahirhoda@gmail.com>2024-11-21 07:53:23 -0600
commit87b316b3f96a22fd85654cd7bd091f2cac1c6691 (patch)
tree413b1a9f2c2d51a8d8dc9c60d3cd31b499e5f65d /main.go
parentc5788706b13d641f4f8bfe70514e64a4f6deaf5f (diff)
use more portable escape sequence to terminate string
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
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