When you start a TMUX session (see #9), none of the functions will work.
This is because TMUX swallows all unknown escape sequences.
To allow the sequence to pass through you need to surround it with:
\ePtmux;\e<your original sequence>\e\\
So I replaced all echo statements with a function that will check if we're in a TMUX session and do this.
When you start a TMUX session (see #9), none of the functions will work. This is because TMUX swallows all unknown escape sequences. To allow the sequence to pass through you need to surround it with:
\ePtmux;\e<your original sequence>\e\\
So I replaced all echo statements with a function that will check if we're in a TMUX session and do this.