Hello, Sorry to bomb you with bugreports, but I got one more problem with git version. Since long time ago i were using xtitle function to set tab titles xtitle () { [ "${TERM:0:5}" == "xterm" ] || return [ -z "$1" ] && title="`hostname`:$LOGNAME" || title="$1" echo -en "\033]0;$title\007" } Since git version function stopped to work. Interesting thing that PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}:${PWD}\007"' still works
sorry, its was related to change from TERM to xterm256-color.
No, the bug reports are fine, please don't stop ;) I'm wondering why $TERM is not working for you. Does not the following print "yes"? $ [ "${TERM:0:5}" == "xterm" ] && echo yes
that was a fixed version :) Original were $TERM == 'xterm'. i were testing by running "xtitle test" manually, and that were not working while my original wrapper function worked just fine. Not sure why is that, but I believe this is not terminal related problem. ssh () { SSHAPP=`which ssh` ARGS=$@ xtitle "ssh $ARGS" $SSHAPP $ARGS }