summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-12-09 12:43:42 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-12-09 12:43:42 +0900
commita07944a5bba77163f05d0d751b970d6d1b597f76 (patch)
tree4d7c92362d99b5d7a969710b0231cdbb8c377f34
parent971ea2217c24e86b8b80fe64bcf53ca9a0b6316c (diff)
parent32010055e16ec135fe9c04647eb0edb2a8e52657 (diff)
Merge pull request #439 from pokey/master
Correct fzf-tmux tmux checking bug
-rwxr-xr-xbin/fzf-tmux2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/fzf-tmux b/bin/fzf-tmux
index f882f8c5..3be9b73f 100755
--- a/bin/fzf-tmux
+++ b/bin/fzf-tmux
@@ -82,7 +82,7 @@ while [ $# -gt 0 ]; do
shift
done
-if [ -z "$TMUX_PANE" ]; then
+if [ -z "$TMUX" ]; then
fzf "${args[@]}"
exit $?
fi