Ludovic Courtès schreef op vr 01-04-2022 om 17:01 [+0200]: > > +(define (hyperlink uri text) > +  "Return a string that denotes a hyperlink using an OSC escape sequence as > +documented at > +." > +  (string-append "\x1b]8;;" uri "\x1b\\" > +                 text "\x1b]8;;\x1b\\")) What if 'uri' contains the character #\x1b, e.g. "file://home/foo/\x15.scm"? Does it need to be escaped? Greetings, Maxime.