Added screen and tmux plugins.

This commit is contained in:
Sorin Ionescu 2011-09-20 23:15:50 -04:00
parent 225ea89e74
commit 8619dd28bc
3 changed files with 45 additions and 10 deletions

View File

@ -99,16 +99,6 @@ if ! check-bool "$DISABLE_COLOR"; then
fi
fi
# Terminal Multiplexer
alias sl="screen -list"
alias sn="screen -U -S"
alias sr="screen -a -A -U -D -R"
if (( $+commands[tmux] )); then
alias ta="tmux attach-session"
alias tl="tmux list-sessions"
fi
# Miscellaneous
(( $+commands[ack] )) && alias afind='ack -il'
(( $+commands[ebuild] )) && alias ebuild='nocorrect ebuild'

View File

@ -0,0 +1,23 @@
# ------------------------------------------------------------------------------
# FILE: screen.plugin.zsh
# DESCRIPTION: oh-my-zsh plugin file.
# AUTHOR: Sorin Ionescu <sorin.ionescu@gmail.com>
# VERSION: 1.0.0
# ------------------------------------------------------------------------------
# Aliases
alias sl="screen -list"
alias sn="screen -U -S"
alias sr="screen -a -A -U -D -R"
# Auto
if (( $SHLVL == 1 )) && ! check-bool "$DISABLE_AUTO_SCREEN"; then
(( SHLVL += 1 )) && export SHLVL
session="$(screen -list 2> /dev/null | sed '1d;$d' | awk '{print $1}' | head -1)"
if [[ -n "$session" ]]; then
exec screen -x "$session"
else
exec screen -a -A -U -D -R -m "$SHELL" -l
fi
fi

View File

@ -0,0 +1,22 @@
# ------------------------------------------------------------------------------
# FILE: tmux.plugin.zsh
# DESCRIPTION: oh-my-zsh plugin file.
# AUTHOR: Sorin Ionescu <sorin.ionescu@gmail.com>
# VERSION: 1.0.0
# ------------------------------------------------------------------------------
# Aliases
alias ta="tmux attach-session"
alias tl="tmux list-sessions"
# Auto
if (( $SHLVL == 1 )) && ! check-bool "$DISABLE_AUTO_TMUX"; then
(( SHLVL += 1 )) && export SHLVL
session="$(tmux list-sessions 2> /dev/null | cut -d':' -f1 | head -1)"
if [[ -n "$session" ]]; then
exec tmux attach-session -t "$session"
else
exec tmux new-session "$SHELL -l"
fi
fi