Merge pull request #17126 from Homebrew/sponsors-maintainers-man-completions
Update manpage and completions.
This commit is contained in:
commit
b0c4202954
@ -741,6 +741,7 @@ _brew_deps() {
|
|||||||
__brewcomp "
|
__brewcomp "
|
||||||
--HEAD
|
--HEAD
|
||||||
--annotate
|
--annotate
|
||||||
|
--arch
|
||||||
--cask
|
--cask
|
||||||
--debug
|
--debug
|
||||||
--direct
|
--direct
|
||||||
@ -757,6 +758,7 @@ _brew_deps() {
|
|||||||
--include-test
|
--include-test
|
||||||
--installed
|
--installed
|
||||||
--missing
|
--missing
|
||||||
|
--os
|
||||||
--quiet
|
--quiet
|
||||||
--skip-recommended
|
--skip-recommended
|
||||||
--topological
|
--topological
|
||||||
|
@ -566,6 +566,7 @@ __fish_brew_complete_arg 'create' -l verbose -d 'Make some output more verbose'
|
|||||||
__fish_brew_complete_cmd 'deps' 'Show dependencies for formula'
|
__fish_brew_complete_cmd 'deps' 'Show dependencies for formula'
|
||||||
__fish_brew_complete_arg 'deps' -l HEAD -d 'Show dependencies for HEAD version instead of stable version'
|
__fish_brew_complete_arg 'deps' -l HEAD -d 'Show dependencies for HEAD version instead of stable version'
|
||||||
__fish_brew_complete_arg 'deps' -l annotate -d 'Mark any build, test, implicit, optional, or recommended dependencies as such in the output'
|
__fish_brew_complete_arg 'deps' -l annotate -d 'Mark any build, test, implicit, optional, or recommended dependencies as such in the output'
|
||||||
|
__fish_brew_complete_arg 'deps' -l arch -d 'Show dependencies for the given CPU architecture'
|
||||||
__fish_brew_complete_arg 'deps' -l cask -d 'Treat all named arguments as casks'
|
__fish_brew_complete_arg 'deps' -l cask -d 'Treat all named arguments as casks'
|
||||||
__fish_brew_complete_arg 'deps' -l debug -d 'Display any debugging information'
|
__fish_brew_complete_arg 'deps' -l debug -d 'Display any debugging information'
|
||||||
__fish_brew_complete_arg 'deps' -l direct -d 'Show only the direct dependencies declared in the formula'
|
__fish_brew_complete_arg 'deps' -l direct -d 'Show only the direct dependencies declared in the formula'
|
||||||
@ -582,6 +583,7 @@ __fish_brew_complete_arg 'deps' -l include-requirements -d 'Include requirements
|
|||||||
__fish_brew_complete_arg 'deps' -l include-test -d 'Include `:test` dependencies for formula (non-recursive)'
|
__fish_brew_complete_arg 'deps' -l include-test -d 'Include `:test` dependencies for formula (non-recursive)'
|
||||||
__fish_brew_complete_arg 'deps' -l installed -d 'List dependencies for formulae that are currently installed. If formula is specified, list only its dependencies that are currently installed'
|
__fish_brew_complete_arg 'deps' -l installed -d 'List dependencies for formulae that are currently installed. If formula is specified, list only its dependencies that are currently installed'
|
||||||
__fish_brew_complete_arg 'deps' -l missing -d 'Show only missing dependencies'
|
__fish_brew_complete_arg 'deps' -l missing -d 'Show only missing dependencies'
|
||||||
|
__fish_brew_complete_arg 'deps' -l os -d 'Show dependencies for the given operating system'
|
||||||
__fish_brew_complete_arg 'deps' -l quiet -d 'Make some output more quiet'
|
__fish_brew_complete_arg 'deps' -l quiet -d 'Make some output more quiet'
|
||||||
__fish_brew_complete_arg 'deps' -l skip-recommended -d 'Skip `:recommended` dependencies for formula'
|
__fish_brew_complete_arg 'deps' -l skip-recommended -d 'Skip `:recommended` dependencies for formula'
|
||||||
__fish_brew_complete_arg 'deps' -l topological -d 'Sort dependencies in topological order'
|
__fish_brew_complete_arg 'deps' -l topological -d 'Sort dependencies in topological order'
|
||||||
|
@ -721,6 +721,7 @@ _brew_deps() {
|
|||||||
_arguments \
|
_arguments \
|
||||||
'--HEAD[Show dependencies for HEAD version instead of stable version]' \
|
'--HEAD[Show dependencies for HEAD version instead of stable version]' \
|
||||||
'--annotate[Mark any build, test, implicit, optional, or recommended dependencies as such in the output]' \
|
'--annotate[Mark any build, test, implicit, optional, or recommended dependencies as such in the output]' \
|
||||||
|
'--arch[Show dependencies for the given CPU architecture]' \
|
||||||
'--debug[Display any debugging information]' \
|
'--debug[Display any debugging information]' \
|
||||||
'--direct[Show only the direct dependencies declared in the formula]' \
|
'--direct[Show only the direct dependencies declared in the formula]' \
|
||||||
'--dot[Show text-based graph description in DOT format]' \
|
'--dot[Show text-based graph description in DOT format]' \
|
||||||
@ -735,6 +736,7 @@ _brew_deps() {
|
|||||||
'--include-test[Include `:test` dependencies for formula (non-recursive)]' \
|
'--include-test[Include `:test` dependencies for formula (non-recursive)]' \
|
||||||
'(--missing --eval-all)--installed[List dependencies for formulae that are currently installed. If formula is specified, list only its dependencies that are currently installed]' \
|
'(--missing --eval-all)--installed[List dependencies for formulae that are currently installed. If formula is specified, list only its dependencies that are currently installed]' \
|
||||||
'(--installed)--missing[Show only missing dependencies]' \
|
'(--installed)--missing[Show only missing dependencies]' \
|
||||||
|
'--os[Show dependencies for the given operating system]' \
|
||||||
'--quiet[Make some output more quiet]' \
|
'--quiet[Make some output more quiet]' \
|
||||||
'--skip-recommended[Skip `:recommended` dependencies for formula]' \
|
'--skip-recommended[Skip `:recommended` dependencies for formula]' \
|
||||||
'--topological[Sort dependencies in topological order]' \
|
'--topological[Sort dependencies in topological order]' \
|
||||||
|
@ -275,6 +275,14 @@ if the installed versions are outdated.
|
|||||||
|
|
||||||
: Show dependencies for HEAD version instead of stable version.
|
: Show dependencies for HEAD version instead of stable version.
|
||||||
|
|
||||||
|
`--os`
|
||||||
|
|
||||||
|
: Show dependencies for the given operating system.
|
||||||
|
|
||||||
|
`--arch`
|
||||||
|
|
||||||
|
: Show dependencies for the given CPU architecture.
|
||||||
|
|
||||||
`--formula`
|
`--formula`
|
||||||
|
|
||||||
: Treat all named arguments as formulae.
|
: Treat all named arguments as formulae.
|
||||||
|
@ -174,6 +174,12 @@ Switch into the mode used by the \fB\-\-eval\-all\fP option, but only list depen
|
|||||||
\fB\-\-HEAD\fP
|
\fB\-\-HEAD\fP
|
||||||
Show dependencies for HEAD version instead of stable version\.
|
Show dependencies for HEAD version instead of stable version\.
|
||||||
.TP
|
.TP
|
||||||
|
\fB\-\-os\fP
|
||||||
|
Show dependencies for the given operating system\.
|
||||||
|
.TP
|
||||||
|
\fB\-\-arch\fP
|
||||||
|
Show dependencies for the given CPU architecture\.
|
||||||
|
.TP
|
||||||
\fB\-\-formula\fP
|
\fB\-\-formula\fP
|
||||||
Treat all named arguments as formulae\.
|
Treat all named arguments as formulae\.
|
||||||
.TP
|
.TP
|
||||||
|
Loading…
x
Reference in New Issue
Block a user