diff options
| author | theimpostor <sahirhoda@gmail.com> | 2024-11-21 07:53:23 -0600 |
|---|---|---|
| committer | theimpostor <sahirhoda@gmail.com> | 2024-11-21 07:53:23 -0600 |
| commit | 87b316b3f96a22fd85654cd7bd091f2cac1c6691 (patch) | |
| tree | 413b1a9f2c2d51a8d8dc9c60d3cd31b499e5f65d /main.go | |
| parent | c5788706b13d641f4f8bfe70514e64a4f6deaf5f (diff) | |
use more portable escape sequence to terminate string
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
