Replies: 1 comment 1 reply
-
There is an escape code (shown above) that is coming through from the process the overmind is controlling. I've not been able to pinpoint where the extra escape codes are coming from. But I've confirmed that is where they are coming from. I've cross posted this in the overmind repo: DarthSim/overmind#192 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use the overmind process runner and notice (after changing to xterm-ghostty) that there are some colour codes that are leaking out in the process startup.
When I move back to the screen-256color that I had before the problem is resolved. I originally changed so that I can get the shell integration to work through into Tmux. That is working but the colour codes are leaking out.
I'm not familiar at all with the escape codes. Does this look familiar to anyone else?
Digging around in the overmind source code, it seems that these are the code that are being used to output the colours:
fmt.Fprintf(buf, "\033[1;38;5;%dm", color)
I got it from: https://github.com/DarthSim/overmind/blob/1f96fb0073b8cc8fb51734ebc7d76f7abcaf2fcd/start/multi_output.go#L123C2-L123C44Any insight would be super helpful. This doesn't stop the application from running, but it seems like there is something up with the interactions.
Beta Was this translation helpful? Give feedback.
All reactions