diff options
-rwxr-xr-x | bashrc/bin/t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bashrc/bin/t b/bashrc/bin/t index 3919af4..e7c73cc 100755 --- a/bashrc/bin/t +++ b/bashrc/bin/t @@ -27,10 +27,10 @@ if [[ "x$1" == x ]] ; then fi if [ -z "$2" -a "$1" != "att" -a "$1" != "ls" ]; then - if teal_tmux has-session -t "$1"; then - exec exec_real_tmux attach-session -t "$1" + if real_tmux has-session -t "$1"; then + exec_real_tmux attach-session -t "$1" else - exec exec_real_tmux new-session -s "$1" + exec_real_tmux new-session -s "$1" fi fi |