diff options
-rwxr-xr-x | ranger/data/scope.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ranger/data/scope.sh b/ranger/data/scope.sh index 44660e1a..dfa0289f 100755 --- a/ranger/data/scope.sh +++ b/ranger/data/scope.sh @@ -94,13 +94,6 @@ handle_image() { # convert "${FILE_PATH}" "${IMAGE_CACHE_PATH}" && exit 6 # exit 1;; - # DJVU - image/vnd.djvu) - # Preview as text conversion (requires djvulibre) - djvutxt "${FILE_PATH}" | fmt -w ${PV_WIDTH} && exit 5 - exiftool "${FILE_PATH}" && exit 5 - exit 1;; - # Image image/*) local orientation @@ -191,6 +184,13 @@ handle_mime() { # pygmentize -f "${pygmentize_format}" -O "style=${PYGMENTIZE_STYLE}" -- "${FILE_PATH}" && exit 5 exit 2;; + # DjVu + image/vnd.djvu) + # Preview as text conversion (requires djvulibre) + djvutxt "${FILE_PATH}" | fmt -w ${PV_WIDTH} && exit 5 + exiftool "${FILE_PATH}" && exit 5 + exit 1;; + # Image image/*) # Preview as text conversion |