mirror of
https://github.com/jarun/nnn.git
synced 2024-11-16 16:13:16 +00:00
Update preview-tui to adapt to terminal size
This commit is contained in:
parent
52697e76d5
commit
16356e9d06
|
@ -18,11 +18,18 @@
|
||||||
# single common preview window. I you provide different FIFO path, they
|
# single common preview window. I you provide different FIFO path, they
|
||||||
# will be independent.
|
# will be independent.
|
||||||
#
|
#
|
||||||
|
# Configure SPLIT to either "h" or "v" to set a 'h'orizontal split or a
|
||||||
|
# 'v'ertical split
|
||||||
|
#
|
||||||
# Shell: POSIX compliant
|
# Shell: POSIX compliant
|
||||||
# Authors: Todd Yamakawa, Léo Villeveygoux
|
# Authors: Todd Yamakawa, Léo Villeveygoux, @Recidiviste
|
||||||
|
|
||||||
TERMINAL="${TERMINAL:-xterm}"
|
TERMINAL="${TERMINAL:-xterm}"
|
||||||
PAGER="${PAGER:-less}"
|
PAGER="${PAGER:-less}"
|
||||||
|
SPLIT=
|
||||||
|
|
||||||
|
lines=$(($(tput lines)-1))
|
||||||
|
cols=$(tput cols)
|
||||||
|
|
||||||
preview_file () {
|
preview_file () {
|
||||||
kill "$(jobs -p)" 2>/dev/null
|
kill "$(jobs -p)" 2>/dev/null
|
||||||
|
@ -49,8 +56,10 @@ preview_file () {
|
||||||
rm "$tmpfifopath"
|
rm "$tmpfifopath"
|
||||||
elif [ "$encoding" = "binary" ] ; then
|
elif [ "$encoding" = "binary" ] ; then
|
||||||
# Binary file: just print filetype info
|
# Binary file: just print filetype info
|
||||||
echo "-------- Binary file --------"
|
echo "-------- binary file --------"
|
||||||
file -b "$1"
|
file -b "$1"
|
||||||
|
echo "\n-------- stat --------"
|
||||||
|
stat "$1"
|
||||||
else
|
else
|
||||||
# Text file:
|
# Text file:
|
||||||
$PAGER "$1" &
|
$PAGER "$1" &
|
||||||
|
@ -74,7 +83,19 @@ if [ "$PREVIEW_MODE" ] ; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -e "${TMUX%%,*}" ] && [ "$(tmux -V | cut -c6)" -eq 3 ] ; then
|
if [ -e "${TMUX%%,*}" ] && [ "$(tmux -V | cut -c6)" -eq 3 ] ; then
|
||||||
|
if [ -z "$SPLIT" ]; then
|
||||||
|
if [ "$(( lines * 2 ))" -gt "$cols" ]; then
|
||||||
|
tmux split-window -e "NNN_FIFO=$NNN_FIFO" -e "PREVIEW_MODE=1" -dv "$0" "$1"
|
||||||
|
else
|
||||||
tmux split-window -e "NNN_FIFO=$NNN_FIFO" -e "PREVIEW_MODE=1" -dh "$0" "$1"
|
tmux split-window -e "NNN_FIFO=$NNN_FIFO" -e "PREVIEW_MODE=1" -dh "$0" "$1"
|
||||||
|
fi
|
||||||
|
elif [ "$SPLIT" = "h" ]; then
|
||||||
|
tmux split-window -e "NNN_FIFO=$NNN_FIFO" -e "PREVIEW_MODE=1" -dh "$0" "$1"
|
||||||
|
elif [ "$SPLIT" = "v" ]; then
|
||||||
|
tmux split-window -e "NNN_FIFO=$NNN_FIFO" -e "PREVIEW_MODE=1" -dv "$0" "$1"
|
||||||
|
else
|
||||||
|
tmux split-window -e "NNN_FIFO=$NNN_FIFO" -e "PREVIEW_MODE=1" -dh "$0" "$1"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
PREVIEW_MODE=1 $TERMINAL -e "$0" "$1" &
|
PREVIEW_MODE=1 $TERMINAL -e "$0" "$1" &
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue