diff --git a/bin/fzf-tmux b/bin/fzf-tmux index 1c17921d6c6922efd294b15b4fb76876bc05068c..dd335d2b100fb106936fda9c51a20245d35d8018 100755 --- a/bin/fzf-tmux +++ b/bin/fzf-tmux @@ -109,7 +109,7 @@ while [[ $# -gt 0 ]]; do [[ -n "$skip" ]] && args+=("$arg") done -if [[ -z "$TMUX" ]] || [[ "$opt" =~ ^-h ]] && [[ "$columns" -le 40 ]] || [[ ! "$opt" =~ ^-h ]] && [[ "$lines" -le 15 ]]; then +if [[ -z "$TMUX" || "$opt" =~ ^-h && "$columns" -le 40 || ! "$opt" =~ ^-h && "$lines" -le 15 ]]; then "$fzf" "${args[@]}" exit $? fi