Use octal escape for backslash in ESC-backslash to avoid the shell eating it and messing up the following carriage return.
git-svn-id: https://svn.cambridge.iain.cx/profile/trunk@166
6be0d1a5-5cfe-0310-89b6-
964be062b18b
vimchild=" [vim]"
if ps -o comm= -p $PPID 2>/dev/null | grep '^vim*$' &>/dev/null; then
# Clear [vim] when exiting.
- trap "echo -ne '\\033]0;$info\\007'" exit
+ trap "echo -ne '\\033]0;$info\\033\\0134'" exit
info="$info$vimchild"
fi
if [ "${TERM##screen}" = "$TERM" ]; then
- export PROMPT_COMMAND="echo -ne '\033]0;$info\007\r\033[K'"
+ export PROMPT_COMMAND="echo -ne '\033]0;$info\033\0134\r\033[K'"
else
- export PROMPT_COMMAND='echo -ne "\033k\033\\"'
+ export PROMPT_COMMAND='echo -ne "\033k\033\0134"'
fi
unset blank info vimchild SSH_FORWARDED