Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update manpage and completions. #18086

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions completions/bash/brew
Original file line number Diff line number Diff line change
Expand Up @@ -2345,6 +2345,7 @@ _brew_tc() {
;;
*) ;;
esac
__brew_complete_tapped
}

_brew_test() {
Expand Down Expand Up @@ -2414,6 +2415,7 @@ _brew_typecheck() {
;;
*) ;;
esac
__brew_complete_tapped
}

_brew_unbottled() {
Expand Down
2 changes: 2 additions & 0 deletions completions/fish/brew.fish
Original file line number Diff line number Diff line change
Expand Up @@ -1534,6 +1534,7 @@ __fish_brew_complete_arg 'tc' -l suggest-typed -d 'Try upgrading `typed` sigils'
__fish_brew_complete_arg 'tc' -l update -d 'Update RBI files'
__fish_brew_complete_arg 'tc' -l update-all -d 'Update all RBI files rather than just updated gems'
__fish_brew_complete_arg 'tc' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_arg 'tc' -a '(__fish_brew_suggest_taps_installed)'


__fish_brew_complete_cmd 'test' 'Run the test method provided by an installed formula'
Expand Down Expand Up @@ -1576,6 +1577,7 @@ __fish_brew_complete_arg 'typecheck' -l suggest-typed -d 'Try upgrading `typed`
__fish_brew_complete_arg 'typecheck' -l update -d 'Update RBI files'
__fish_brew_complete_arg 'typecheck' -l update-all -d 'Update all RBI files rather than just updated gems'
__fish_brew_complete_arg 'typecheck' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_arg 'typecheck' -a '(__fish_brew_suggest_taps_installed)'


__fish_brew_complete_cmd 'unbottled' 'Show the unbottled dependents of formulae'
Expand Down
8 changes: 6 additions & 2 deletions completions/zsh/_brew
Original file line number Diff line number Diff line change
Expand Up @@ -1902,7 +1902,9 @@ _brew_tc() {
'--suggest-typed[Try upgrading `typed` sigils]' \
'(--lsp)--update[Update RBI files]' \
'(--lsp)--update-all[Update all RBI files rather than just updated gems]' \
'--verbose[Make some output more verbose]'
'--verbose[Make some output more verbose]' \
- tap \
'*::tap:__brew_any_tap'
}

# brew test
Expand Down Expand Up @@ -1951,7 +1953,9 @@ _brew_typecheck() {
'--suggest-typed[Try upgrading `typed` sigils]' \
'(--lsp)--update[Update RBI files]' \
'(--lsp)--update-all[Update all RBI files rather than just updated gems]' \
'--verbose[Make some output more verbose]'
'--verbose[Make some output more verbose]' \
- tap \
'*::tap:__brew_any_tap'
}

# brew unbottled
Expand Down
2 changes: 1 addition & 1 deletion docs/Manpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -2762,7 +2762,7 @@ Run Homebrew's unit and integration tests.

: Randomise tests with the specified *`value`* instead of a random seed.

### `typecheck`, `tc` \[*`options`*\]
### `typecheck`, `tc` \[*`options`*\] \[*`tap`* ...\]

Check for typechecking errors using Sorbet.

Expand Down
2 changes: 1 addition & 1 deletion manpages/brew.1
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,7 @@ Run the test suite serially to find the \fIn\fP slowest tests\.
.TP
\fB\-\-seed\fP
Randomise tests with the specified \fIvalue\fP instead of a random seed\.
.SS "\fBtypecheck\fP, \fBtc\fP \fR[\fIoptions\fP]"
.SS "\fBtypecheck\fP, \fBtc\fP \fR[\fIoptions\fP] \fR[\fItap\fP \.\.\.]"
Check for typechecking errors using Sorbet\.
.TP
\fB\-\-fix\fP
Expand Down
Loading