nnn/plugins/preview-tui

122 lines
2.9 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env sh
# Description: Text based file previewer
#
# Note: This plugin needs a "NNN_FIFO" to work.
#
# Dependencies: tmux (>=3.0) or xterm or $TERMINAL, less or $PAGER, file, tree
#
2020-05-06 05:12:29 +00:00
# Usage:
# You need to set a NNN_FIFO path and set a key for the plugin,
# then start `nnn`:
#
# $ NNN_FIFO=/tmp/nnn.fifo nnn
#
# Then in `nnn`, launch the `preview-tui` plugin.
#
# If you provide the same NNN_FIFO to all nnn instances, there will be a
# single common preview window. I you provide different FIFO path, they
# will be independent.
#
# Configure SPLIT to either "h" or "v" to set a 'h'orizontal split or a
# 'v'ertical split
#
2020-05-06 05:12:29 +00:00
# Shell: POSIX compliant
# Authors: Todd Yamakawa, Léo Villeveygoux, @Recidiviste
TERMINAL="${TERMINAL:-xterm}"
PAGER="${PAGER:-less}"
SPLIT=
lines=$(($(tput lines)-1))
cols=$(tput cols)
2020-06-01 13:52:16 +00:00
beginswith() {
case $1 in "$2"*) true;; *) false;; esac;
}
preview_file () {
kill "$(jobs -p)" 2>/dev/null
clear
encoding="$(file -b --mime-encoding "$1")"
2020-06-02 00:22:47 +00:00
# Detect mime type
2020-06-01 13:52:16 +00:00
mimetype="$(file --dereference --brief --mime-type -- "$1")"
2020-06-02 00:22:47 +00:00
# Detect file extention
2020-06-01 13:52:16 +00:00
ext="${1##*.}"
if ! [ -z "$ext" ]; then
ext="$(printf "%s" "${ext}" | tr '[:upper:]' '[:lower:]')"
fi
if [ -d "$1" ]; then
# Print directory tree
cd "$1" || return
2020-06-02 00:22:47 +00:00
# We use a FIFO to access less PID
tmpfifopath="${TMPDIR:-/tmp}/nnn-preview-tui-fifo.$$"
mkfifo "$tmpfifopath" || return
$PAGER < "$tmpfifopath" &
(
exec > "$tmpfifopath"
tree&
)
rm "$tmpfifopath"
2020-06-02 00:22:47 +00:00
#elif beginswith "$mimetype" "image/" ; then
# viu "$1" | head -n "$lines"
#elif beginswith "$mimetype" "text/troff" ; then
# man -l "$1" &
elif beginswith "$mimetype" "application/zip" ; then
#$PAGER "$(zip -sf "$1")" &
$PAGER "$(unzip -l "$1")" &
elif [ "$ext" = "gz" ] || [ "$ext" = "bz2" ] ; then
$PAGER "$(tar -tvf "$1")" &
elif [ "$encoding" = "binary" ] ; then
# Binary file: just print filetype info
echo "-------- binary file --------"
file -b "$1"
2020-06-02 00:22:47 +00:00
echo ''
stat "$1"
else
# Text file:
$PAGER "$1" &
fi
}
if [ "$PREVIEW_MODE" ] ; then
if [ ! -r "$NNN_FIFO" ] ; then
echo "No FIFO available! (\$NNN_FIFO='$NNN_FIFO')" >&2
read -r
exit 1
fi
preview_file "$1"
exec < "$NNN_FIFO"
while read -r selection ; do
preview_file "$selection"
done
exit 0
fi
if [ -e "${TMUX%%,*}" ] && [ "$(tmux -V | cut -c6)" -eq 3 ] ; then
if [ -z "$SPLIT" ]; then
if [ "$(( lines * 2 ))" -gt "$cols" ]; then
2020-06-01 09:47:40 +00:00
SPLIT='v'
else
2020-06-01 09:47:40 +00:00
SPLIT='h'
fi
2020-06-01 09:47:40 +00:00
elif [ "$SPLIT" != "h" ] && [ "$SPLIT" != "v" ] ; then
SPLIT='h'
fi
2020-06-01 09:47:40 +00:00
tmux split-window -e "NNN_FIFO=$NNN_FIFO" -e "PREVIEW_MODE=1" -d"$SPLIT" "$0" "$1"
else
PREVIEW_MODE=1 $TERMINAL -e "$0" "$1" &
fi