-
-
Notifications
You must be signed in to change notification settings - Fork 127
Description
Contour Terminal version
Contour Terminal Emulator 0.4.4-master-521b1408
Installer source
Github: source code cloned
Operating System
Ubuntu 22.04
Architecture
x86-64
Other Software
Colorize filter from aerc filters. Probably shouldn't be hard to build, but if you tell me what logs to make I can paste that as well.
Steps to reproduce
I was running the below script:
#!/bin/bash
for (( i = 0; i < 20; i++ )); do
echo "http://example$i.com" | ~/.local/libexec/aerc/filters/colorize -8
# printf '\033]8;;http://example%s.com\033\\This is a link %s\033]8;;\033\\\n' "$i" "$i"
done
but actually two different links are enough to reproduce. Contour will consistently open the link corresponding to first link that was output by colorize in the terminal. A subsequent osc-8 with the commented out printf will work fine, but any osc-8 output by colorize will forever open the same (first) link.
Expected Behavior
The proper links are opened.
Actual Behavior
Contour will consistently open the link corresponding to first link that was output by colorize in the terminal. A subsequent osc-8 with the commented out printf will work fine, but any osc-8 output by colorize will forever open the same (first) link.
Additional notes
No response