From 9fddd416cae5d4b9c050543edc03c9ae40ff63e2 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Mon, 1 Jun 2020 15:17:40 +0530 Subject: [PATCH] Simplify preview-tui --- plugins/preview-tui | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/plugins/preview-tui b/plugins/preview-tui index c14736e5..c3eae3bb 100755 --- a/plugins/preview-tui +++ b/plugins/preview-tui @@ -85,17 +85,15 @@ fi 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" + SPLIT='v' else - tmux split-window -e "NNN_FIFO=$NNN_FIFO" -e "PREVIEW_MODE=1" -dh "$0" "$1" + SPLIT='h' 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" + elif [ "$SPLIT" != "h" ] && [ "$SPLIT" != "v" ] ; then + SPLIT='h' fi + + 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