m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 15:53:39 -05:00

Merge pull request #439 from pokey/master

Correct fzf-tmux tmux checking bug
This commit is contained in:
Junegunn Choi
2015-12-09 12:43:42 +09:00

View File

@@ -82,7 +82,7 @@ while [ $# -gt 0 ]; do
shift
done
if [ -z "$TMUX_PANE" ]; then
if [ -z "$TMUX" ]; then
fzf "${args[@]}"
exit $?
fi