Merge pull request #1712 from Rahlir/plugin-fzopen-fix

Fix bug in fzopen when selection is canceled
This commit is contained in:
Arun 2023-08-17 05:09:19 +05:30 committed by GitHub
commit 66f636de13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,25 +59,27 @@ if [ "$3" ]; then
exit 0 exit 0
fi fi
if [ "$USE_NUKE" -ne 0 ]; then if [ "$entry" ]; then
"$NUKE" "$entry" if [ "$USE_NUKE" -ne 0 ]; then
exit 0 "$NUKE" "$entry"
fi exit 0
fi
# Open the file (works for a single file only) # Open the file (works for a single file only)
cmd_file="" cmd_file=""
cmd_open="" cmd_open=""
if uname | grep -q "Darwin"; then if uname | grep -q "Darwin"; then
cmd_file="file -bIL" cmd_file="file -bIL"
cmd_open="open" cmd_open="open"
else else
cmd_file="file -biL" cmd_file="file -biL"
cmd_open="xdg-open" cmd_open="xdg-open"
fi fi
case "$($cmd_file "$entry")" in case "$($cmd_file "$entry")" in
*text*) *text*)
"${VISUAL:-$EDITOR}" "$entry" ;; "${VISUAL:-$EDITOR}" "$entry" ;;
*) *)
$cmd_open "$entry" >/dev/null 2>&1 ;; $cmd_open "$entry" >/dev/null 2>&1 ;;
esac esac
fi