Add support of screen-* $TERM in screen plugin

master
Denys Lózko 14 years ago
parent c2ae9e09ca
commit af729cc476
  1. 2
      plugins/screen/screen.plugin.zsh

@ -1,6 +1,6 @@
# if using GNU screen, let the zsh tell screen what the title and hardstatus # if using GNU screen, let the zsh tell screen what the title and hardstatus
# of the tab window should be. # of the tab window should be.
if [[ $TERM == "screen" ]]; then if [[ "$TERM" == screen* ]]; then
if [[ $_GET_PATH == '' ]]; then if [[ $_GET_PATH == '' ]]; then
_GET_PATH='echo $PWD | sed "s/^\/Users\//~/;s/^\/home\//~/;s/^~$USER/~/"' _GET_PATH='echo $PWD | sed "s/^\/Users\//~/;s/^\/home\//~/;s/^~$USER/~/"'
fi fi

Loading…
Cancel
Save