about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2002-10-18 09:26:55 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2002-10-18 09:26:55 +0000
commita167b473e8775c4ccccb5dfe75d2682ab13a21fb (patch)
tree68dbfe370957e83b8085280e08f5f664171839ee /Completion
parent35b617afb498d692729ae0689f96991c4672d822 (diff)
downloadzsh-a167b473e8775c4ccccb5dfe75d2682ab13a21fb.tar.gz
zsh-a167b473e8775c4ccccb5dfe75d2682ab13a21fb.tar.xz
zsh-a167b473e8775c4ccccb5dfe75d2682ab13a21fb.zip
17832: add a default list of filename extensions as a fallback
Diffstat (limited to 'Completion')
-rw-r--r--Completion/X/Command/_xloadimage9
1 files changed, 7 insertions, 2 deletions
diff --git a/Completion/X/Command/_xloadimage b/Completion/X/Command/_xloadimage
index 132ecbeca..5763385e8 100644
--- a/Completion/X/Command/_xloadimage
+++ b/Completion/X/Command/_xloadimage
@@ -33,8 +33,13 @@ else
     '*-global[following option applies to all images]'
   )
 fi
-ipath=( . ${=rc[1]#*:} )
-extension=( ${=rc[2]#*:} )
+ipath=( . ${=${(M)rc:#*path:*}#*:} )
+extension=( ${=${(M)rc:#*extensions:*}#*:} )
+# set default file extensions if there are none
+(( $#extension )) || extension=(
+  .gif .jpg .jpeg .png .rle .csun .msun .sun .face
+  .xbm .bm .fbm .pcx .ppm .pgm .pbm .tga .xpm
+)
 
 # all options are valid after -help so no exclusion lists below
 _x_arguments "$args[@]" \