mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Support mime, extension in preview-tui
This commit is contained in:
parent
f6d9a6b34d
commit
ca8bc8bf30
|
@ -31,11 +31,21 @@ SPLIT=
|
||||||
lines=$(($(tput lines)-1))
|
lines=$(($(tput lines)-1))
|
||||||
cols=$(tput cols)
|
cols=$(tput cols)
|
||||||
|
|
||||||
|
beginswith() {
|
||||||
|
case $1 in "$2"*) true;; *) false;; esac;
|
||||||
|
}
|
||||||
|
|
||||||
preview_file () {
|
preview_file () {
|
||||||
kill "$(jobs -p)" 2>/dev/null
|
kill "$(jobs -p)" 2>/dev/null
|
||||||
clear
|
clear
|
||||||
|
|
||||||
encoding="$(file -b --mime-encoding "$1")"
|
encoding="$(file -b --mime-encoding "$1")"
|
||||||
|
mimetype="$(file --dereference --brief --mime-type -- "$1")"
|
||||||
|
|
||||||
|
ext="${1##*.}"
|
||||||
|
if ! [ -z "$ext" ]; then
|
||||||
|
ext="$(printf "%s" "${ext}" | tr '[:upper:]' '[:lower:]')"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -d "$1" ]; then
|
if [ -d "$1" ]; then
|
||||||
# Print directory tree
|
# Print directory tree
|
||||||
|
@ -54,6 +64,10 @@ preview_file () {
|
||||||
)
|
)
|
||||||
|
|
||||||
rm "$tmpfifopath"
|
rm "$tmpfifopath"
|
||||||
|
elif beginswith "$mimetype" "image/" ; then
|
||||||
|
viu "$1" | head -n "$lines"
|
||||||
|
elif beginswith "$mimetype" "text/troff" ; then
|
||||||
|
man -l "$1" &
|
||||||
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 --------"
|
||||||
|
|
Loading…
Reference in a new issue