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. #18063

Merged
merged 1 commit into from
Aug 15, 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
1 change: 0 additions & 1 deletion completions/bash/brew
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,6 @@ _brew_debugger() {
--help
--open
--quiet
--stop
--verbose
"
return
Expand Down
1 change: 0 additions & 1 deletion completions/fish/brew.fish
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,6 @@ __fish_brew_complete_arg 'debugger' -l debug -d 'Display any debugging informati
__fish_brew_complete_arg 'debugger' -l help -d 'Show this message'
__fish_brew_complete_arg 'debugger' -l open -d 'Start remote debugging over a Unix socket'
__fish_brew_complete_arg 'debugger' -l quiet -d 'Make some output more quiet'
__fish_brew_complete_arg 'debugger' -l stop -d 'Stop at the beginning of the script'
__fish_brew_complete_arg 'debugger' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_arg 'debugger' -a '(__fish_brew_suggest_commands)'

Expand Down
1 change: 0 additions & 1 deletion completions/zsh/_brew
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,6 @@ _brew_debugger() {
'--help[Show this message]' \
'--open[Start remote debugging over a Unix socket]' \
'--quiet[Make some output more quiet]' \
'--stop[Stop at the beginning of the script]' \
'--verbose[Make some output more verbose]' \
- command \
'*::command:__brew_commands'
Expand Down
6 changes: 1 addition & 5 deletions docs/Manpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -2142,17 +2142,13 @@ see: <https://rubydoc.brew.sh/Formula>

: Ignore errors for disallowed formula names and names that shadow aliases.

### `debugger` \[`--stop`\] \[`--open`\] *`command`* \[...\]
### `debugger` \[`--open`\] *`command`* \[...\]

Run the specified Homebrew command in debug mode.

To pass flags to the command, use `--` to separate them from the `brew` flags.
For example: `brew debugger -- list --formula`.

`-s`, `--stop`

: Stop at the beginning of the script.

`-O`, `--open`

: Start remote debugging over a Unix socket.
Expand Down
5 changes: 1 addition & 4 deletions manpages/brew.1
Original file line number Diff line number Diff line change
Expand Up @@ -1363,14 +1363,11 @@ Generate the new formula within the given tap, specified as \fIuser\fP\fB/\fP\fI
.TP
\fB\-f\fP, \fB\-\-force\fP
Ignore errors for disallowed formula names and names that shadow aliases\.
.SS "\fBdebugger\fP \fR[\fB\-\-stop\fP] \fR[\fB\-\-open\fP] \fIcommand\fP \fR[\.\.\.]"
.SS "\fBdebugger\fP \fR[\fB\-\-open\fP] \fIcommand\fP \fR[\.\.\.]"
Run the specified Homebrew command in debug mode\.
.P
To pass flags to the command, use \fB\-\-\fP to separate them from the \fBbrew\fP flags\. For example: \fBbrew debugger \-\- list \-\-formula\fP\&\.
.TP
\fB\-s\fP, \fB\-\-stop\fP
Stop at the beginning of the script\.
.TP
\fB\-O\fP, \fB\-\-open\fP
Start remote debugging over a Unix socket\.
.SS "\fBdispatch\-build\-bottle\fP \fR[\fIoptions\fP] \fIformula\fP \fR[\.\.\.]"
Expand Down
Loading