summaryrefslogtreecommitdiff
path: root/Completion/X/Command
diff options
context:
space:
mode:
authorOliver Kiddle <okiddle@yahoo.co.uk>2019-10-18 22:52:32 +0200
committerOliver Kiddle <okiddle@yahoo.co.uk>2019-10-18 22:52:32 +0200
commitea78d0d4ae47a3d6c5fa56eb6d8b2b4129572366 (patch)
treee754c4b3a4debe2daa797b44cccde5bce16d87d4 /Completion/X/Command
parenta891557b4971afa480c2108d88685b650a3dac13 (diff)
downloadzsh-ea78d0d4ae47a3d6c5fa56eb6d8b2b4129572366.tar.gz
zsh-ea78d0d4ae47a3d6c5fa56eb6d8b2b4129572366.zip
c.f. 44831: remove completion functions included in upstream projects
Diffstat (limited to 'Completion/X/Command')
-rw-r--r--Completion/X/Command/_zathura47
1 files changed, 0 insertions, 47 deletions
diff --git a/Completion/X/Command/_zathura b/Completion/X/Command/_zathura
deleted file mode 100644
index ebd229909..000000000
--- a/Completion/X/Command/_zathura
+++ /dev/null
@@ -1,47 +0,0 @@
-#compdef zathura
-
-(( $+functions[_zathura_files] )) ||
-_zathura_files(){
- local -a plugins_files
- local plugins_dir
- for plugins_dir in \
- ${(Qv)opt_args[(i)-p|--plugins-dir]}(#qN) \
- {/usr/local,/usr,}/lib/zathura(#qN)
- do
- plugins_files+=( $plugins_dir/*.so(N) )
- done
- if [[ -z "${plugins_files}" ]]; then
- _files -g "(#i)*.pdf(-.)"
- return
- fi
- local -a supported_filetypes
- local pf
- for pf in "${plugins_files[@]}"; do
- if [[ $pf =~ "mupdf" ]]; then
- supported_filetypes+="pdf"
- supported_filetypes+="epub"
- supported_filetypes+="xps"
- elif [[ $pf =~ "poppler" ]]; then
- supported_filetypes+="pdf"
- else
- supported_filetypes+="${pf:t:r}"
- fi
- done
- _files -g "(#i)*.(${(j.|.)${(@u)supported_filetypes}})(-.)"
-}
-
-_arguments -s -S \
- {-e,--reparent=}'[specify xid of window to reparent to]:xid:_x_window' \
- {-c,--config-dir=}'[specify path to the config directory]:config directory:{_files -/}' \
- {-d,--data-dir=}'[specify path to the data directory]:data directory:{_files -/}' \
- {-p,--plugins-dir=}'[specify path to the directory containing plugins]:plugins directory:{_files -/}' \
- {-w,--password=}"[specify a password for the document]:password: " \
- {-P,--page=}'[open the document at the given page number]:page number: ' \
- {-l,--log-level=}'[set log level]:log level:(debug info warning error)' \
- {-x,--synctex-editor-command=}'[specify synctex editor command]:synctex editor command:_cmdstring' \
- '--synctex-forward=[jump to the given position]:synctex position: ' \
- '--synctex-pid=[specify pid of an instance having the correct file opened]:synctex pid:_pids' \
- '--fork[fork into background]' \
- '(- :)--version[display version string and exit]' \
- '(- :)--help[display help and exit]' \
- '*:file:_zathura_files'