1
0
Fork 0
mirror of https://github.com/zdharma-continuum/zinit-configs.git synced 2025-01-31 04:08:16 +01:00
zinit-configs/NICHOLAS85/zinit/snippets/config/completions/_groff
vladislav doster 92f7b7ff82
maint: normalize configuration file names to be "zshrc" (#11)
Signed-off-by: Vladislav Doster <mvdoster@gmail.com>
2022-06-04 07:40:14 -05:00

53 lines
1.7 KiB
Text

#compdef groff
# zsh completions for 'groff'
# automatically generated with http://github.com/RobSis/zsh-completion-generator
local arguments
arguments=(
'-h[print this message]'
'-v[print version number]'
'-e[preprocess with eqn]'
'-g[preprocess with grn]'
'-j[preprocess with chem]'
'-k[preprocess with preconv]'
'-p[preprocess with pic]'
'-s[preprocess with soelim]'
'-t[preprocess with tbl]'
'-G[preprocess with grap]'
'-J[preprocess with gideal]'
'-R[preprocess with refer]'
'-a[produce ASCII description of output]'
'-b[print backtraces with errors or warnings]'
'-c[disable color output]'
'-dcs[define a string c as s]'
'-ffam[use fam as the default font family]'
'-i[read standard input after named input files]'
'-l[spool the output]'
'-mname[read macros tmac.name]'
'-nnum[number first page n]'
'-olist[output only pages in list]'
'-rcn[define a number register c as n]'
'-wname[enable warning name]'
'-z[suppress formatted output]'
'-C[enable compatibility mode]'
'-Darg[use arg as default input encoding. Implies -k]'
'-E[inhibit all errors]'
'-Fdir[search dir for device directories]'
'-Idir[search dir for soelim, troff, and grops. Implies -s]'
'-Karg[use arg as input encoding. Implies -k]'
'-Larg[pass arg to the spooler]'
'-Mdir[search dir for macro files]'
'-N[dont allow newlines within eqn delimiters]'
'-Parg[pass arg to the postprocessor]'
'-S[enable safer mode (the default)]'
'-Tdev[use device dev]'
'-U[enable unsafe mode]'
'-V[print commands on stdout instead of running them]'
'-Wname[inhibit warning name]'
'-X[use X11 previewer rather than usual postprocessor]'
'-Z[dont postprocess]'
'*:filename:_files'
)
_arguments -s $arguments