Parcourir la source

Support mime, extension in preview-tui

master
Arun Prakash Jana il y a 4 ans
Parent
révision
ca8bc8bf30
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: A75979F35C080412
1 fichiers modifiés avec 14 ajouts et 0 suppressions
  1. +14
    -0
      plugins/preview-tui

+ 14
- 0
plugins/preview-tui Voir le fichier

@@ -31,11 +31,21 @@ SPLIT=
lines=$(($(tput lines)-1))
cols=$(tput cols)

beginswith() {
case $1 in "$2"*) true;; *) false;; esac;
}

preview_file () {
kill "$(jobs -p)" 2>/dev/null
clear

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
# Print directory tree
@@ -54,6 +64,10 @@ preview_file () {
)

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
# Binary file: just print filetype info
echo "-------- binary file --------"


Chargement…
Annuler
Enregistrer