mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
This commit is contained in:
parent
8b6b2ea07e
commit
24d83d1e8c
2 changed files with 7 additions and 4 deletions
|
@ -1,2 +1,2 @@
|
||||||
set -g default-terminal $ZSH_TMUX_TERM
|
set -g default-terminal $ZSH_TMUX_TERM
|
||||||
source $ZSH_TMUX_CONFIG
|
source-file $ZSH_TMUX_CONFIG
|
|
@ -67,9 +67,12 @@ function _zsh_tmux_plugin_run() {
|
||||||
|
|
||||||
# If failed, just run tmux, fixing the TERM variable if requested.
|
# If failed, just run tmux, fixing the TERM variable if requested.
|
||||||
if [[ $? -ne 0 ]]; then
|
if [[ $? -ne 0 ]]; then
|
||||||
[[ "$ZSH_TMUX_FIXTERM" == "true" ]] && tmux_cmd+=(-f "$_ZSH_TMUX_FIXED_CONFIG") || \
|
if [[ "$ZSH_TMUX_FIXTERM" == "true" ]]; then
|
||||||
[[ -e "$ZSH_TMUX_CONFIG" ]] && tmux_cmd+=(-f "$ZSH_TMUX_CONFIG")
|
tmux_cmd+=(-f "$_ZSH_TMUX_FIXED_CONFIG")
|
||||||
$tmux_cmd new-session
|
elif [[ -e "$ZSH_TMUX_CONFIG" ]]; then
|
||||||
|
tmux_cmd+=(-f "$ZSH_TMUX_CONFIG")
|
||||||
|
fi
|
||||||
|
$tmux_cmd new-session
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$ZSH_TMUX_AUTOQUIT" == "true" ]]; then
|
if [[ "$ZSH_TMUX_AUTOQUIT" == "true" ]]; then
|
||||||
|
|
Loading…
Reference in a new issue