From: Tadeas Uhlir Date: Sat, 12 Aug 2023 15:41:30 +0000 (+0200) Subject: Fix bug in fzopen when selection is canceled X-Git-Tag: v4.9~3^2 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=e5001791880c450372faf327284b2146149a7959;p=nnn.git Fix bug in fzopen when selection is canceled --- diff --git a/plugins/fzopen b/plugins/fzopen index 17b05856..4303dc31 100755 --- a/plugins/fzopen +++ b/plugins/fzopen @@ -59,25 +59,27 @@ if [ "$3" ]; then exit 0 fi -if [ "$USE_NUKE" -ne 0 ]; then - "$NUKE" "$entry" - exit 0 -fi +if [ "$entry" ]; then + if [ "$USE_NUKE" -ne 0 ]; then + "$NUKE" "$entry" + exit 0 + fi -# Open the file (works for a single file only) -cmd_file="" -cmd_open="" -if uname | grep -q "Darwin"; then - cmd_file="file -bIL" - cmd_open="open" -else - cmd_file="file -biL" - cmd_open="xdg-open" -fi + # Open the file (works for a single file only) + cmd_file="" + cmd_open="" + if uname | grep -q "Darwin"; then + cmd_file="file -bIL" + cmd_open="open" + else + cmd_file="file -biL" + cmd_open="xdg-open" + fi -case "$($cmd_file "$entry")" in - *text*) - "${VISUAL:-$EDITOR}" "$entry" ;; - *) - $cmd_open "$entry" >/dev/null 2>&1 ;; -esac + case "$($cmd_file "$entry")" in + *text*) + "${VISUAL:-$EDITOR}" "$entry" ;; + *) + $cmd_open "$entry" >/dev/null 2>&1 ;; + esac +fi