mirror of
1
0
Fork 0

fixed default-command 'reattach-to-user-namespace' detection

This commit is contained in:
Gregory Pakosz 2013-08-22 18:16:31 +02:00
parent 4442ebff3e
commit 49c947baa5
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ bind e new-window -n '~/.tmux.conf' '${EDITOR:-vim} ~/.tmux.conf && tmux source
bind r source-file ~/.tmux.conf \; display '~/.tmux.conf sourced'
# see https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard
set -g default-command "type -p reattach-to-user-namespace &>/dev/null && reattach-to-user-namespace -l $SHELL || $SHELL -l"
set -g default-command '$(command -v reattach-to-user-namespace && echo '-l') $SHELL'
# -- display -------------------------------------------------------------------