You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
When I run terminitor start project all of my tabs/windows open correctly but the prompts are garbled with content like: "% \e]2;terminal\a" and "% \e]2;resque\a" etc.
I'm using zsh and I think it has to do with my terminal color setup. Anyone know how to fix this?
The text was updated successfully, but these errors were encountered:
This happens because zsh sets the window/tab title in a different manner than bash. I've managed to hack this to get it working in my environment (OS X with oh-my-zsh, which gives me a simple title function to change the window title), but I'm trying to figure out how that can be abstracted in a way that assumes nothing about the environment.
Whoops, sorry; missed @mcmire's request way back when.
I got this working in zsh by replacing a line in lib/terminitor/abstract_core.rb:
#tab_content[:commands].insert(0, "PS1=\"$PS1\\[\\e]2;#{tab_name}\\a\\]\"") if tab_nametab_content[:commands].insert(0,"title \"#{tab_name}\"")iftab_name
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I run
terminitor start project
all of my tabs/windows open correctly but the prompts are garbled with content like: "% \e]2;terminal\a" and "% \e]2;resque\a" etc.I'm using zsh and I think it has to do with my terminal color setup. Anyone know how to fix this?
The text was updated successfully, but these errors were encountered: