summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2014-04-17 19:07:08 +0200
committerAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2014-04-17 19:07:08 +0200
commit0518e3e2158e66b0c5240aa79994e356c91f7bee (patch)
tree1e5f6e782f86e3a66daee19fdc019cd30d1a170b
parent5613ac0dfa0ca5bfd69856371e509f4a1b317bae (diff)
downloaddotfiles-0518e3e2158e66b0c5240aa79994e356c91f7bee.tar.gz
dotfiles-0518e3e2158e66b0c5240aa79994e356c91f7bee.tar.xz
dotfiles-0518e3e2158e66b0c5240aa79994e356c91f7bee.zip
bashrc/bin/t: fix typo
-rwxr-xr-xbashrc/bin/t6
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