preview-tui: close previewer

This commit is contained in:
Luuk van Baal 2021-04-22 21:45:23 +02:00
parent f0c64a89b8
commit 15031f7d9e
2 changed files with 18 additions and 0 deletions

View File

@ -273,6 +273,15 @@ if [ "$PREVIEW_MODE" ]; then
exit 0
fi
if pgrep -f "cat $NNN_FIFO" >/dev/null; then
if exists QuickLook.exe && stat "$1" >/dev/null 2>&1; then
f="$(wslpath -w "$1" 2>&1)" && QuickLook.exe "$f" &
elif exists Bridge.exe && stat "$1" >/dev/null 2>&1; then
f="$(wslpath -w "$1" 2>&1)" && Bridge.exe "$f" &
fi
pkill -f "cat $NNN_FIO"
exit 0
fi
if [ "$TERMINAL" = "tmux" ]; then
# tmux splits are inverted
if [ "$SPLIT" = "v" ]; then SPLIT="h"; else SPLIT="v"; fi

View File

@ -374,6 +374,15 @@ if [ "$PREVIEW_MODE" ]; then
exit 0
fi
if pgrep -f "cat $NNN_FIFO" >/dev/null; then
if exists QuickLook.exe && stat "$1" >/dev/null 2>&1; then
f="$(wslpath -w "$1" 2>&1)" && QuickLook.exe "$f" &
elif exists Bridge.exe && stat "$1" >/dev/null 2>&1; then
f="$(wslpath -w "$1" 2>&1)" && Bridge.exe "$f" &
fi
pkill -f "cat $NNN_FIO"
exit 0
fi
if [ "$TERMINAL" = "tmux" ]; then
# tmux splits are inverted
if [ "$SPLIT" = "v" ]; then SPLIT="h"; else SPLIT="v"; fi