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:
BrewTestBot 2024-07-13 14:55:53 +00:00
parent f39b5c1426
commit ff02bc46f8
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
5 changed files with 42 additions and 18 deletions

View File

@ -2113,7 +2113,9 @@ _brew_tab() {
case "${cur}" in case "${cur}" in
-*) -*)
__brewcomp " __brewcomp "
--cask
--debug --debug
--formula
--help --help
--installed-on-request --installed-on-request
--no-installed-on-request --no-installed-on-request
@ -2124,7 +2126,8 @@ _brew_tab() {
;; ;;
*) ;; *) ;;
esac esac
__brew_complete_formulae __brew_complete_installed_formulae
__brew_complete_installed_casks
} }
_brew_tap() { _brew_tap() {

View File

@ -1414,14 +1414,17 @@ __fish_brew_complete_arg 'style; and not __fish_seen_argument -l cask -l casks'
__fish_brew_complete_arg 'style; and not __fish_seen_argument -l formula -l formulae' -a '(__fish_brew_suggest_casks_all)' __fish_brew_complete_arg 'style; and not __fish_seen_argument -l formula -l formulae' -a '(__fish_brew_suggest_casks_all)'
__fish_brew_complete_cmd 'tab' 'Edit tab information for installed formulae' __fish_brew_complete_cmd 'tab' 'Edit tab information for installed formulae or casks'
__fish_brew_complete_arg 'tab' -l cask -d 'Only mark casks'
__fish_brew_complete_arg 'tab' -l debug -d 'Display any debugging information' __fish_brew_complete_arg 'tab' -l debug -d 'Display any debugging information'
__fish_brew_complete_arg 'tab' -l formula -d 'Only mark formulae'
__fish_brew_complete_arg 'tab' -l help -d 'Show this message' __fish_brew_complete_arg 'tab' -l help -d 'Show this message'
__fish_brew_complete_arg 'tab' -l installed-on-request -d 'Mark formula as installed on request' __fish_brew_complete_arg 'tab' -l installed-on-request -d 'Mark installed_formula or installed_cask as installed on request'
__fish_brew_complete_arg 'tab' -l no-installed-on-request -d 'Mark formula as not installed on request' __fish_brew_complete_arg 'tab' -l no-installed-on-request -d 'Mark installed_formula or installed_cask as not installed on request'
__fish_brew_complete_arg 'tab' -l quiet -d 'Make some output more quiet' __fish_brew_complete_arg 'tab' -l quiet -d 'Make some output more quiet'
__fish_brew_complete_arg 'tab' -l verbose -d 'Make some output more verbose' __fish_brew_complete_arg 'tab' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_arg 'tab' -a '(__fish_brew_suggest_formulae_all)' __fish_brew_complete_arg 'tab; and not __fish_seen_argument -l cask -l casks' -a '(__fish_brew_suggest_formulae_installed)'
__fish_brew_complete_arg 'tab; and not __fish_seen_argument -l formula -l formulae' -a '(__fish_brew_suggest_casks_installed)'
__fish_brew_complete_cmd 'tap' 'Tap a formula repository' __fish_brew_complete_cmd 'tap' 'Tap a formula repository'

View File

@ -210,7 +210,7 @@ __brew_internal_commands() {
'sh:Enter an interactive shell for Homebrew'\''s build environment' 'sh:Enter an interactive shell for Homebrew'\''s build environment'
'shellenv:Print export statements' 'shellenv:Print export statements'
'style:Check formulae or files for conformance to Homebrew style guidelines' 'style:Check formulae or files for conformance to Homebrew style guidelines'
'tab:Edit tab information for installed formulae' 'tab:Edit tab information for installed formulae or casks'
'tap:Tap a formula repository' 'tap:Tap a formula repository'
'tap-info:Show detailed information about one or more taps' 'tap-info:Show detailed information about one or more taps'
'tap-new:Generate the template files for a new tap' 'tap-new:Generate the template files for a new tap'
@ -1754,12 +1754,16 @@ _brew_tab() {
_arguments \ _arguments \
'--debug[Display any debugging information]' \ '--debug[Display any debugging information]' \
'--help[Show this message]' \ '--help[Show this message]' \
'(--no-installed-on-request)--installed-on-request[Mark formula as installed on request]' \ '(--no-installed-on-request)--installed-on-request[Mark installed_formula or installed_cask as installed on request]' \
'(--installed-on-request)--no-installed-on-request[Mark formula as not installed on request]' \ '(--installed-on-request)--no-installed-on-request[Mark installed_formula or installed_cask as not installed on request]' \
'--quiet[Make some output more quiet]' \ '--quiet[Make some output more quiet]' \
'--verbose[Make some output more verbose]' \ '--verbose[Make some output more verbose]' \
- formula \ - installed_formula \
'*::formula:__brew_formulae' '(--cask)--formula[Only mark formulae]' \
'*::installed_formula:__brew_installed_formulae' \
- installed_cask \
'(--formula)--cask[Only mark casks]' \
'*::installed_cask:__brew_installed_casks'
} }
# brew tap # brew tap

View File

@ -1162,9 +1162,9 @@ evaluation of this command's output to your dotfiles (e.g. `~/.bash_profile` or
The shell can be specified explicitly with a supported shell name parameter. The shell can be specified explicitly with a supported shell name parameter.
Unknown shells will output POSIX exports. Unknown shells will output POSIX exports.
### `tab` \[`--installed-on-request`\] \[`--no-installed-on-request`\] *`formula`* \[...\] ### `tab` \[*`options`*\] *`installed_formula`*\|*`installed_cask`* \[...\]
Edit tab information for installed formulae. Edit tab information for installed formulae or casks.
This can be useful when you want to control whether an installed formula should This can be useful when you want to control whether an installed formula should
be removed by `brew autoremove`. To prevent removal, mark the formula as be removed by `brew autoremove`. To prevent removal, mark the formula as
@ -1173,11 +1173,19 @@ request.
`--installed-on-request` `--installed-on-request`
: Mark *`formula`* as installed on request. : Mark *`installed_formula`* or *`installed_cask`* as installed on request.
`--no-installed-on-request` `--no-installed-on-request`
: Mark *`formula`* as not installed on request. : Mark *`installed_formula`* or *`installed_cask`* as not installed on request.
`--formula`
: Only mark formulae.
`--cask`
: Only mark casks.
### `tap` \[*`options`*\] \[*`user`*`/`*`repo`*\] \[*`URL`*\] ### `tap` \[*`options`*\] \[*`user`*`/`*`repo`*\] \[*`URL`*\]

View File

@ -727,16 +727,22 @@ Print export statements\. When run in a shell, this installation of Homebrew wil
The variables \fBHOMEBREW_PREFIX\fP, \fBHOMEBREW_CELLAR\fP and \fBHOMEBREW_REPOSITORY\fP are also exported to avoid querying them multiple times\. To help guarantee idempotence, this command produces no output when Homebrew\[u2019]s \fBbin\fP and \fBsbin\fP directories are first and second respectively in your \fBPATH\fP\&\. Consider adding evaluation of this command\[u2019]s output to your dotfiles (e\.g\. \fB~/\.bash_profile\fP or \fB~/\.zprofile\fP on macOS and \fB~/\.bashrc\fP or \fB~/\.zshrc\fP on Linux) with: \fBeval "$(brew shellenv)"\fP The variables \fBHOMEBREW_PREFIX\fP, \fBHOMEBREW_CELLAR\fP and \fBHOMEBREW_REPOSITORY\fP are also exported to avoid querying them multiple times\. To help guarantee idempotence, this command produces no output when Homebrew\[u2019]s \fBbin\fP and \fBsbin\fP directories are first and second respectively in your \fBPATH\fP\&\. Consider adding evaluation of this command\[u2019]s output to your dotfiles (e\.g\. \fB~/\.bash_profile\fP or \fB~/\.zprofile\fP on macOS and \fB~/\.bashrc\fP or \fB~/\.zshrc\fP on Linux) with: \fBeval "$(brew shellenv)"\fP
.P .P
The shell can be specified explicitly with a supported shell name parameter\. Unknown shells will output POSIX exports\. The shell can be specified explicitly with a supported shell name parameter\. Unknown shells will output POSIX exports\.
.SS "\fBtab\fP \fR[\fB\-\-installed\-on\-request\fP] \fR[\fB\-\-no\-installed\-on\-request\fP] \fIformula\fP \fR[\.\.\.]" .SS "\fBtab\fP \fR[\fIoptions\fP] \fIinstalled_formula\fP|\fIinstalled_cask\fP \fR[\.\.\.]"
Edit tab information for installed formulae\. Edit tab information for installed formulae or casks\.
.P .P
This can be useful when you want to control whether an installed formula should be removed by \fBbrew autoremove\fP\&\. To prevent removal, mark the formula as installed on request; to allow removal, mark the formula as not installed on request\. This can be useful when you want to control whether an installed formula should be removed by \fBbrew autoremove\fP\&\. To prevent removal, mark the formula as installed on request; to allow removal, mark the formula as not installed on request\.
.TP .TP
\fB\-\-installed\-on\-request\fP \fB\-\-installed\-on\-request\fP
Mark \fIformula\fP as installed on request\. Mark \fIinstalled_formula\fP or \fIinstalled_cask\fP as installed on request\.
.TP .TP
\fB\-\-no\-installed\-on\-request\fP \fB\-\-no\-installed\-on\-request\fP
Mark \fIformula\fP as not installed on request\. Mark \fIinstalled_formula\fP or \fIinstalled_cask\fP as not installed on request\.
.TP
\fB\-\-formula\fP
Only mark formulae\.
.TP
\fB\-\-cask\fP
Only mark casks\.
.SS "\fBtap\fP \fR[\fIoptions\fP] \fR[\fIuser\fP\fB/\fP\fIrepo\fP] \fR[\fIURL\fP]" .SS "\fBtap\fP \fR[\fIoptions\fP] \fR[\fIuser\fP\fB/\fP\fIrepo\fP] \fR[\fIURL\fP]"
Tap a formula repository\. If no arguments are provided, list all installed taps\. Tap a formula repository\. If no arguments are provided, list all installed taps\.
.P .P