Skip to content

Commit f218619

Browse files
committed
Show webp images by default
Previously, lsix only showed webp if the filename was specified. Now, webp files will be listed if no filenames are given on the command line.
1 parent f525df7 commit f218619

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lsix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ main() {
189189
if [[ $# == 0 ]]; then
190190
# No command line args? Use a sorted list of image files in CWD.
191191
shopt -s nullglob nocaseglob nocasematch
192-
set -- *{jpg,jpeg,png,gif,tiff,tif,p?m,x[pb]m,bmp,ico,svg,eps}
192+
set -- *{jpg,jpeg,png,gif,webp,tiff,tif,p?m,x[pb]m,bmp,ico,svg,eps}
193193
[[ $# != 0 ]] || exit
194194
readarray -t < <(printf "%s\n" "$@" | sort)
195195

0 commit comments

Comments
 (0)