diff options
Diffstat (limited to '.config/ranger/scope.sh')
| -rwxr-xr-x | .config/ranger/scope.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/ranger/scope.sh b/.config/ranger/scope.sh index cce86cf..174ba17 100755 --- a/.config/ranger/scope.sh +++ b/.config/ranger/scope.sh @@ -88,9 +88,9 @@ case "$extension" in try odt2txt "$path" && { dump | trim; exit 5; } || exit 1;; # HTML Pages: htm|html|xhtml) - try w3m -dump "$path" && { dump | trim | fmt -s -w $width; exit 4; } - try lynx -dump "$path" && { dump | trim | fmt -s -w $width; exit 4; } - try elinks -dump "$path" && { dump | trim | fmt -s -w $width; exit 4; } + try w3m -dump "$path" && { dump | trim | fmt -s -w "$width"; exit 4; } + try lynx -dump "$path" && { dump | trim | fmt -s -w "$width"; exit 4; } + try elinks -dump "$path" && { dump | trim | fmt -s -w "$width"; exit 4; } ;; # fall back to highlight/cat if the text browsers fail esac |
