mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
Merge pull request #1226 from luukvbaal/preview-tui
Proper fix for preview-tui zombie-pane
This commit is contained in:
commit
182ac51b8d
|
@ -401,13 +401,6 @@ ueberzug_remove() {
|
|||
}
|
||||
|
||||
winch_handler() {
|
||||
# workaround for preview-tui tmux child causing zombie pane
|
||||
if [ "$NNN_PARENT" -eq "$NNN_PARENT" ] 2>/dev/null; then
|
||||
kill -0 "$NNN_PARENT" || return
|
||||
else
|
||||
pidof nnn || return
|
||||
fi
|
||||
|
||||
clear
|
||||
kill "$(cat "$PREVIEWPID")"
|
||||
if [ -p "$FIFO_UEBERZUG" ]; then
|
||||
|
@ -427,6 +420,7 @@ preview_fifo() {
|
|||
printf "%s" "$selection" > "$CURSEL"
|
||||
fi
|
||||
done < "$NNN_FIFO"
|
||||
sleep 0.1 # make sure potential preview by winch_handler is killed
|
||||
pkill -P "$$"
|
||||
} 2>/dev/null
|
||||
|
||||
|
|
Loading…
Reference in a new issue