1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-06-29 14:50:26 +00:00

Fixed GNU Screen and tmux configuration file detection.

This commit is contained in:
Sorin Ionescu 2011-07-14 17:17:34 -04:00
parent 0ccc0c3fe6
commit 571aa8c8e1

View File

@ -82,19 +82,16 @@ fi
# Terminal Multiplexer
# ------------------------------------------------------------------------------
local screenrc tmuxconf
if [[ "$TERM" == 'xterm-color' ]]; then
if [[ -e "$HOME/.screenrc" ]]; then
screenrc="-c '$HOME/.screenrc'"
tmuxconf="-f '$HOME/.tmux.conf'"
fi
fi
if [[ "$TERM" == 'xterm-256color' ]]; then
if [[ "$TERM" == *256color* ]]; then
if [[ -e "$HOME/.screenrc256" ]]; then
screenrc="-c '$HOME/.screenrc256'"
tmuxconf="-f '$HOME/.tmux256.conf'"
fi
else
if [[ -e "$HOME/.screenrc" ]]; then
screenrc="-c '$HOME/.screenrc'"
tmuxconf="-f '$HOME/.tmux.conf'"
fi
fi
alias screen="screen $screenrc"
@ -102,6 +99,8 @@ alias sl="screen $screenrc -list"
alias sr="screen $screenrc -a -A -U -D -R"
alias S="screen $screenrc -U -S"
alias tmux="tmux $tmuxconf"
alias tls="tmux list-sessions"
if (( ${+commands[tmux]} )); then
alias tmux="tmux $tmuxconf"
alias tls="tmux list-sessions"
fi