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
# tmux requires unrecognized OSC sequences to be wrapped with DCS tmux;# <sequence> ST, and for all ESCs in <sequence> to be replaced with ESC ESC. It# only accepts ESC backslash for ST.functionprint_osc() {
if [[ $TERM== screen* ]] ;thenprintf"\033Ptmux;\033\033]"elseprintf"\033]"fi
}
# More of the tmux workaround described above.functionprint_st() {
if [[ $TERM== screen* ]] ;thenprintf"\a\033\\"elseprintf"\a"fi
}
This would make it possible to use termimg from within tmux, which would be cool!
The text was updated successfully, but these errors were encountered:
Any chance of supporting this? You can see the basic trick at the top of the original
imgcat
bash script:This would make it possible to use
termimg
from within tmux, which would be cool!The text was updated successfully, but these errors were encountered: