about summary refs log tree commit diff
path: root/Completion/X
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2016-09-12 23:22:34 +0200
committerOliver Kiddle <opk@zsh.org>2016-09-12 23:22:34 +0200
commit8e3f6e891949301da990b402d712c67f981c5d91 (patch)
treea7da4ede53605ffd77d09a829379d19ee424a0f5 /Completion/X
parent43137b8e8f9ce8a3c9d6b0cd530102813fc6b5a6 (diff)
downloadzsh-8e3f6e891949301da990b402d712c67f981c5d91.tar.gz
zsh-8e3f6e891949301da990b402d712c67f981c5d91.tar.xz
zsh-8e3f6e891949301da990b402d712c67f981c5d91.zip
39287: add .tif as a valid extension for TIFF files
Diffstat (limited to 'Completion/X')
-rw-r--r--Completion/X/Command/_okular4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/X/Command/_okular b/Completion/X/Command/_okular
index bfdb4de4b..f08f81c6e 100644
--- a/Completion/X/Command/_okular
+++ b/Completion/X/Command/_okular
@@ -1,10 +1,10 @@
 #compdef okular
 local extns
 
-extns="{pdf,ps,eps,dvi}(.gz|.bz2)(#c,1)|djvu|tiff|chm|cbr|cbz"
+extns="(pdf|ps|eps|dvi)(|.gz|.bz2)|djvu|tif|tiff|chm|cbr|cbz"
 
 _arguments \
   '(-p --page)'{-p,--page}'[page of the document to be shown]:page: ' \
   '--presentation[start the document in presentation mode]' \
   '--unique[unique instance control]' \
-  "*:Okular documents:_files -g '*.(#i)($extns)(-.)'"
+  "*:okular document:_files -g '*.(#i)($extns)(-.)'"