Procházet zdrojové kódy

shrc: remove -c options from tx function

pull/1/head
10sr před 10 roky
rodič
revize
b947c33f2d
1 změnil soubory, kde provedl 4 přidání a 2 odebrání
  1. +4
    -2
      shrc

+ 4
- 2
shrc Zobrazit soubor

@@ -687,10 +687,12 @@ tx(){
elif test -z "$TMUX"
then
# -A: attach if already exists
tmux new-session -A -c "$HOME" -s "$1"
# tmux new-session -A -c "$HOME" -s "$1"
tmux new-session -A -s "$1"
else
# create new session if not exists yet
tmux has-session -t "$1" || TMUX= tmux new-session -d -c "$HOME" -s "$1"
# tmux has-session -t "$1" || TMUX= tmux new-session -d -c "$HOME" -s "$1"
tmux has-session -t "$1" || TMUX= tmux new-session -d -s "$1"
tmux switch-client -t "$1"
fi
}


Načítá se…
Zrušit
Uložit