summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelthas <delthas@dille.cc>2022-10-17 14:16:41 +0200
committerdelthas <delthas@dille.cc>2022-10-17 14:16:41 +0200
commit4ce085cccba3fa92ac77826c3ccb729a87b5cd6d (patch)
tree35bb568f583d18ea134a461a9838f1036066bee0
parentAdd OSC 8 hyperlink IDs (diff)
Fix OSC 8 hyperlink ID format
I meant to add 0-padding to avoid spaces.
-rw-r--r--ui/style.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/style.go b/ui/style.go
index 506a03d..aa6683a 100644
--- a/ui/style.go
+++ b/ui/style.go
@@ -142,7 +142,7 @@ func (s StyledString) ParseURLs() StyledString {
if u, err := url.Parse(link); err != nil || u.Scheme == "" {
link = "https://" + link
}
- id := fmt.Sprintf("_%10d", rand.Int31())
+ id := fmt.Sprintf("_%010d", rand.Int31())
// find last style starting before or at url begin
for ; j < len(s.styles); j++ {
st := s.styles[j]