Update manpage and completions.
Autogenerated by the [sponsors-maintainers-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/sponsors-maintainers-man-completions.yml) workflow.
This commit is contained in:
parent
9ee471d42c
commit
0267484403
@ -1501,6 +1501,7 @@ _brew_list() {
|
||||
case "${cur}" in
|
||||
-*)
|
||||
__brewcomp "
|
||||
--built-from-source
|
||||
--cask
|
||||
--debug
|
||||
--formula
|
||||
@ -1510,6 +1511,7 @@ _brew_list() {
|
||||
--installed-on-request
|
||||
--multiple
|
||||
--pinned
|
||||
--poured-from-bottle
|
||||
--quiet
|
||||
--verbose
|
||||
--versions
|
||||
@ -1605,6 +1607,7 @@ _brew_ls() {
|
||||
case "${cur}" in
|
||||
-*)
|
||||
__brewcomp "
|
||||
--built-from-source
|
||||
--cask
|
||||
--debug
|
||||
--formula
|
||||
@ -1614,6 +1617,7 @@ _brew_ls() {
|
||||
--installed-on-request
|
||||
--multiple
|
||||
--pinned
|
||||
--poured-from-bottle
|
||||
--quiet
|
||||
--verbose
|
||||
--versions
|
||||
|
||||
@ -1031,6 +1031,7 @@ __fish_brew_complete_arg 'linkage' -a '(__fish_brew_suggest_formulae_installed)'
|
||||
|
||||
|
||||
__fish_brew_complete_cmd 'list' 'List all installed formulae and casks'
|
||||
__fish_brew_complete_arg 'list' -l built-from-source -d 'List the formulae compiled from source'
|
||||
__fish_brew_complete_arg 'list' -l cask -d 'List only casks, or treat all named arguments as casks'
|
||||
__fish_brew_complete_arg 'list' -l debug -d 'Display any debugging information'
|
||||
__fish_brew_complete_arg 'list' -l formula -d 'List only formulae, or treat all named arguments as formulae'
|
||||
@ -1040,6 +1041,7 @@ __fish_brew_complete_arg 'list' -l installed-as-dependency -d 'List the formulae
|
||||
__fish_brew_complete_arg 'list' -l installed-on-request -d 'List the formulae installed on request'
|
||||
__fish_brew_complete_arg 'list' -l multiple -d 'Only show formulae with multiple versions installed'
|
||||
__fish_brew_complete_arg 'list' -l pinned -d 'List only pinned formulae, or only the specified (pinned) formulae if formula are provided. See also `pin`, `unpin`'
|
||||
__fish_brew_complete_arg 'list' -l poured-from-bottle -d 'List the formulae installed from a bottle'
|
||||
__fish_brew_complete_arg 'list' -l quiet -d 'Make some output more quiet'
|
||||
__fish_brew_complete_arg 'list' -l verbose -d 'Make some output more verbose'
|
||||
__fish_brew_complete_arg 'list' -l versions -d 'Show the version number for installed formulae, or only the specified formulae if formula are provided'
|
||||
@ -1099,6 +1101,7 @@ __fish_brew_complete_arg 'log; and not __fish_seen_argument -l formula -l formul
|
||||
|
||||
|
||||
__fish_brew_complete_cmd 'ls' 'List all installed formulae and casks'
|
||||
__fish_brew_complete_arg 'ls' -l built-from-source -d 'List the formulae compiled from source'
|
||||
__fish_brew_complete_arg 'ls' -l cask -d 'List only casks, or treat all named arguments as casks'
|
||||
__fish_brew_complete_arg 'ls' -l debug -d 'Display any debugging information'
|
||||
__fish_brew_complete_arg 'ls' -l formula -d 'List only formulae, or treat all named arguments as formulae'
|
||||
@ -1108,6 +1111,7 @@ __fish_brew_complete_arg 'ls' -l installed-as-dependency -d 'List the formulae i
|
||||
__fish_brew_complete_arg 'ls' -l installed-on-request -d 'List the formulae installed on request'
|
||||
__fish_brew_complete_arg 'ls' -l multiple -d 'Only show formulae with multiple versions installed'
|
||||
__fish_brew_complete_arg 'ls' -l pinned -d 'List only pinned formulae, or only the specified (pinned) formulae if formula are provided. See also `pin`, `unpin`'
|
||||
__fish_brew_complete_arg 'ls' -l poured-from-bottle -d 'List the formulae installed from a bottle'
|
||||
__fish_brew_complete_arg 'ls' -l quiet -d 'Make some output more quiet'
|
||||
__fish_brew_complete_arg 'ls' -l verbose -d 'Make some output more verbose'
|
||||
__fish_brew_complete_arg 'ls' -l versions -d 'Show the version number for installed formulae, or only the specified formulae if formula are provided'
|
||||
|
||||
@ -1285,16 +1285,18 @@ _brew_linkage() {
|
||||
# brew list
|
||||
_brew_list() {
|
||||
_arguments \
|
||||
'(--cask --versions --pinned --full-name)--built-from-source[List the formulae compiled from source]' \
|
||||
'--debug[Display any debugging information]' \
|
||||
'(--versions --pinned ---installed-on-request --installed-as-dependency --l --r --t)--full-name[Print formulae with fully-qualified names. Unless `--full-name`, `--versions` or `--pinned` are passed, other options (i.e. `-1`, `-l`, `-r` and `-t`) are passed to `ls`(1) which produces the actual output]' \
|
||||
'(--versions --pinned ---installed-on-request --installed-as-dependency --poured-from-bottle --built-from-source --l --r --t)--full-name[Print formulae with fully-qualified names. Unless `--full-name`, `--versions` or `--pinned` are passed, other options (i.e. `-1`, `-l`, `-r` and `-t`) are passed to `ls`(1) which produces the actual output]' \
|
||||
'--help[Show this message]' \
|
||||
'(--cask --versions --pinned --full-name)--installed-as-dependency[List the formulae installed as dependencies]' \
|
||||
'(--cask --versions --pinned)--installed-on-request[List the formulae installed on request]' \
|
||||
'(--cask --pinned)--multiple[Only show formulae with multiple versions installed]' \
|
||||
'(--cask --multiple --installed-on-request --installed-as-dependency --1 --l --r --t --full-name)--pinned[List only pinned formulae, or only the specified (pinned) formulae if formula are provided. See also `pin`, `unpin`]' \
|
||||
'(--cask --multiple --installed-on-request --installed-as-dependency --poured-from-bottle --built-from-source --1 --l --r --t --full-name)--pinned[List only pinned formulae, or only the specified (pinned) formulae if formula are provided. See also `pin`, `unpin`]' \
|
||||
'(--cask --versions --pinned --full-name)--poured-from-bottle[List the formulae installed from a bottle]' \
|
||||
'--quiet[Make some output more quiet]' \
|
||||
'--verbose[Make some output more verbose]' \
|
||||
'(--installed-on-request --installed-as-dependency --1 --l --r --t --full-name)--versions[Show the version number for installed formulae, or only the specified formulae if formula are provided]' \
|
||||
'(--installed-on-request --installed-as-dependency --poured-from-bottle --built-from-source --1 --l --r --t --full-name)--versions[Show the version number for installed formulae, or only the specified formulae if formula are provided]' \
|
||||
'-1[Force output to be one entry per line. This is the default when output is not to a terminal]' \
|
||||
'-l[List formulae and/or casks in long format. Has no effect when a formula or cask name is passed as an argument]' \
|
||||
'-r[Reverse the order of the formulae and/or casks sort to list the oldest entries first. Has no effect when a formula or cask name is passed as an argument]' \
|
||||
@ -1303,7 +1305,7 @@ _brew_list() {
|
||||
'(--cask)--formula[List only formulae, or treat all named arguments as formulae]' \
|
||||
'*::installed_formula:__brew_installed_formulae' \
|
||||
- installed_cask \
|
||||
'(--formula --pinned --multiple --installed-on-request --installed-as-dependency)--cask[List only casks, or treat all named arguments as casks]' \
|
||||
'(--formula --pinned --multiple --installed-on-request --installed-as-dependency --poured-from-bottle --built-from-source)--cask[List only casks, or treat all named arguments as casks]' \
|
||||
'*::installed_cask:__brew_installed_casks'
|
||||
}
|
||||
|
||||
@ -1368,16 +1370,18 @@ _brew_log() {
|
||||
# brew ls
|
||||
_brew_ls() {
|
||||
_arguments \
|
||||
'(--cask --versions --pinned --full-name)--built-from-source[List the formulae compiled from source]' \
|
||||
'--debug[Display any debugging information]' \
|
||||
'(--versions --pinned ---installed-on-request --installed-as-dependency --l --r --t)--full-name[Print formulae with fully-qualified names. Unless `--full-name`, `--versions` or `--pinned` are passed, other options (i.e. `-1`, `-l`, `-r` and `-t`) are passed to `ls`(1) which produces the actual output]' \
|
||||
'(--versions --pinned ---installed-on-request --installed-as-dependency --poured-from-bottle --built-from-source --l --r --t)--full-name[Print formulae with fully-qualified names. Unless `--full-name`, `--versions` or `--pinned` are passed, other options (i.e. `-1`, `-l`, `-r` and `-t`) are passed to `ls`(1) which produces the actual output]' \
|
||||
'--help[Show this message]' \
|
||||
'(--cask --versions --pinned --full-name)--installed-as-dependency[List the formulae installed as dependencies]' \
|
||||
'(--cask --versions --pinned)--installed-on-request[List the formulae installed on request]' \
|
||||
'(--cask --pinned)--multiple[Only show formulae with multiple versions installed]' \
|
||||
'(--cask --multiple --installed-on-request --installed-as-dependency --1 --l --r --t --full-name)--pinned[List only pinned formulae, or only the specified (pinned) formulae if formula are provided. See also `pin`, `unpin`]' \
|
||||
'(--cask --multiple --installed-on-request --installed-as-dependency --poured-from-bottle --built-from-source --1 --l --r --t --full-name)--pinned[List only pinned formulae, or only the specified (pinned) formulae if formula are provided. See also `pin`, `unpin`]' \
|
||||
'(--cask --versions --pinned --full-name)--poured-from-bottle[List the formulae installed from a bottle]' \
|
||||
'--quiet[Make some output more quiet]' \
|
||||
'--verbose[Make some output more verbose]' \
|
||||
'(--installed-on-request --installed-as-dependency --1 --l --r --t --full-name)--versions[Show the version number for installed formulae, or only the specified formulae if formula are provided]' \
|
||||
'(--installed-on-request --installed-as-dependency --poured-from-bottle --built-from-source --1 --l --r --t --full-name)--versions[Show the version number for installed formulae, or only the specified formulae if formula are provided]' \
|
||||
'-1[Force output to be one entry per line. This is the default when output is not to a terminal]' \
|
||||
'-l[List formulae and/or casks in long format. Has no effect when a formula or cask name is passed as an argument]' \
|
||||
'-r[Reverse the order of the formulae and/or casks sort to list the oldest entries first. Has no effect when a formula or cask name is passed as an argument]' \
|
||||
@ -1386,7 +1390,7 @@ _brew_ls() {
|
||||
'(--cask)--formula[List only formulae, or treat all named arguments as formulae]' \
|
||||
'*::installed_formula:__brew_installed_formulae' \
|
||||
- installed_cask \
|
||||
'(--formula --pinned --multiple --installed-on-request --installed-as-dependency)--cask[List only casks, or treat all named arguments as casks]' \
|
||||
'(--formula --pinned --multiple --installed-on-request --installed-as-dependency --poured-from-bottle --built-from-source)--cask[List only casks, or treat all named arguments as casks]' \
|
||||
'*::installed_cask:__brew_installed_casks'
|
||||
}
|
||||
|
||||
|
||||
@ -761,6 +761,14 @@ paths within its current keg. If *`cask`* is provided, list its artifacts.
|
||||
|
||||
: List the formulae installed as dependencies.
|
||||
|
||||
`--poured-from-bottle`
|
||||
|
||||
: List the formulae installed from a bottle.
|
||||
|
||||
`--built-from-source`
|
||||
|
||||
: List the formulae compiled from source.
|
||||
|
||||
`-1`
|
||||
|
||||
: Force output to be one entry per line. This is the default when output is not
|
||||
|
||||
@ -478,6 +478,12 @@ List the formulae installed on request\.
|
||||
\fB\-\-installed\-as\-dependency\fP
|
||||
List the formulae installed as dependencies\.
|
||||
.TP
|
||||
\fB\-\-poured\-from\-bottle\fP
|
||||
List the formulae installed from a bottle\.
|
||||
.TP
|
||||
\fB\-\-built\-from\-source\fP
|
||||
List the formulae compiled from source\.
|
||||
.TP
|
||||
\fB\-1\fP
|
||||
Force output to be one entry per line\. This is the default when output is not to a terminal\.
|
||||
.TP
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user