aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGravatar lvgx <l@vgx.fr>2020-05-06 19:25:14 +0200
committerGravatar GitHub <noreply@github.com>2020-05-06 22:55:14 +0530
commitfcab64263eb68932fdab8380cfe18ea3f557b615 (patch)
tree09b874f9e88414fcad157810b1011772e61d46a7 /plugins
parent11c9648774b408dc2e4b660f9389bed211d00215 (diff)
downloadnnn-fcab64263eb68932fdab8380cfe18ea3f557b615.tar.gz
preview-tui: ensure 1st hovered file is previewed (#561)
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/preview-tui42
1 files changed, 24 insertions, 18 deletions
diff --git a/plugins/preview-tui b/plugins/preview-tui
index 17b529b..3ebf195 100755
--- a/plugins/preview-tui
+++ b/plugins/preview-tui
@@ -23,6 +23,25 @@
TERMINAL="${TERMINAL:-xterm}"
+preview_file () {
+ clear
+ lines=$(($(tput lines)-1))
+ cols=$(tput cols)
+ mime="$(file -b --mime-type "$1")"
+
+ if [ -d "$1" ]; then
+ # Print directory tree
+ cd "$1" && tree | head -n $lines | cut -c 1-"$cols"
+ elif [ "${mime%%/*}" = "text" ] ; then
+ # Print file head
+ head -n $lines "$1" | cut -c 1-"$cols"
+ else
+ # Binary file
+ echo "-------- Binary file --------"
+ file -b "$1"
+ fi
+}
+
if [ "$PREVIEW_MODE" ] ; then
if [ ! -r "$NNN_FIFO" ] ; then
echo "No FIFO available! (\$NNN_FIFO='$NNN_FIFO')" >&2
@@ -30,30 +49,17 @@ if [ "$PREVIEW_MODE" ] ; then
exit 1
fi
+ preview_file "$1"
+
exec < "$NNN_FIFO"
while read -r selection ; do
- clear
- lines=$(($(tput lines)-1))
- cols=$(tput cols)
- mime="$(file -b --mime-type "$selection")"
-
- if [ -d "$selection" ]; then
- # Print directory tree
- cd "$selection" && tree | head -n $lines | cut -c 1-"$cols"
- elif [ "${mime%%/*}" = "text" ] ; then
- # Print file head
- head -n $lines "$selection" | cut -c 1-"$cols"
- else
- # Binary file
- echo "-------- Binary file --------"
- file -b "$selection"
- fi
+ preview_file "$selection"
done
exit 0
fi
if [ -e "${TMUX%%,*}" ] && [ "$(tmux -V | cut -c6)" -eq 3 ] ; then
- tmux split-window -e "NNN_FIFO=$NNN_FIFO" -e "PREVIEW_MODE=1" -dh "$0"
+ tmux split-window -e "NNN_FIFO=$NNN_FIFO" -e "PREVIEW_MODE=1" -dh "$0" "$1"
else
- PREVIEW_MODE=1 $TERMINAL -e "$0" &
+ PREVIEW_MODE=1 $TERMINAL -e "$0" "$1" &
fi