[file_previewer.sh]: Never wrap lines of CSV previews

(breaks formatting)
This commit is contained in:
2024-10-03 15:11:29 +01:00
parent ea4a806aea
commit cf5508143a

View File

@ -57,7 +57,7 @@ case "$mimetype" in
exiftool "$file" | bat --theme='base16' --terminal-width "$(($width-4))" --force-colorization;;
text/csv)
column --separator "," --table "$file" | bat --theme='base16' --terminal-width "$(($width-4))" --force-colorization;;
column --separator "," --table "$file" | bat --theme='base16' --terminal-width "$(($width-4))" --force-colorization --wrap=never;;
text/html)
lynx -width="$width" -display_charset=utf-8 -dump "$file";;