about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2022-08-28 16:45:48 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2022-08-28 16:45:53 +0000
commiteb738c793a6f9f293fc655c6aa87effc3dd9e44f (patch)
tree66a0be60cefcb3a9e0d9392e9786cf6d67b49cb5
parent7996fa561e93d9c27919ed4d4257c13d99db3807 (diff)
downloadzsh-eb738c793a6f9f293fc655c6aa87effc3dd9e44f.tar.gz
zsh-eb738c793a6f9f293fc655c6aa87effc3dd9e44f.tar.xz
zsh-eb738c793a6f9f293fc655c6aa87effc3dd9e44f.zip
unposted: _imagemagick: Add *.svg and *.webp files.
As a comment just above the hunk indicates, many more formats could be added.
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_imagemagick2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5b89a7d21..1b97eefcc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2022-08-28  Daniel Shahaf  <d.s@daniel.shahaf.name>
+
+	* unposted: Completion/Unix/Command/_imagemagick: Add *.svg
+	and *.webp files.
+
 2022-08-05  Jun-ichi Takimoto  <takimoto-j@kba.biglobe.ne.jp>
 
 	* Felipe Contreras: 50435+50436 (+50444):
diff --git a/Completion/Unix/Command/_imagemagick b/Completion/Unix/Command/_imagemagick
index b7671fe49..6553868d9 100644
--- a/Completion/Unix/Command/_imagemagick
+++ b/Completion/Unix/Command/_imagemagick
@@ -12,7 +12,7 @@ typeset -A opt_args
 #
 # and certainly many other things...
 
-formats=(jpg jpeg jp2 j2k jpc jpx jpf tif tiff miff ras bmp cgm dcx ps eps fig fits fpx gif mpeg pbm pgm ppm pcd pcl pdf pcx png rad rgb rgba rle sgi html shtml tga ttf uil xcf xwd xbm xpm yuv)
+formats=(jpg jpeg jp2 j2k jpc jpx jpf tif tiff miff ras bmp cgm dcx ps eps fig fits fpx gif mpeg pbm pgm ppm pcd pcl pdf pcx png rad rgb rgba rle sgi html shtml tga ttf uil xcf xwd xbm xpm yuv svg webp)
 
 if (( $# )); then
   _files "$@" -g "*.(#i)(${(j:|:)formats})(-.)"