list: Update documentation

This commit is contained in:
William Ma 2020-07-09 11:21:22 -04:00
parent 8f3d230995
commit 62a5614850
3 changed files with 9 additions and 3 deletions

View File

@ -32,7 +32,7 @@ module Homebrew
switch "--pinned", switch "--pinned",
description: "Show the versions of pinned formulae, or only the specified (pinned) "\ description: "Show the versions of pinned formulae, or only the specified (pinned) "\
"formulae if <formula> are provided. See also `pin`, `unpin`." "formulae if <formula> are provided. See also `pin`, `unpin`."
switch "--casks", switch "--cask",
description: "List casks" description: "List casks"
# passed through to ls # passed through to ls
switch "-1", switch "-1",
@ -47,14 +47,14 @@ module Homebrew
description: "Sort by time modified, listing most recently modified first." description: "Sort by time modified, listing most recently modified first."
switch :verbose switch :verbose
switch :debug switch :debug
["--unbrewed", "--multiple", "--pinned", "-l", "-r", "-t"].each { |flag| conflicts "--casks", flag } ["--unbrewed", "--multiple", "--pinned", "-l", "-r", "-t"].each { |flag| conflicts "--cask", flag }
end end
end end
def list def list
list_args.parse list_args.parse
return list_casks if args.casks? return list_casks if args.cask?
return list_unbrewed if args.unbrewed? return list_unbrewed if args.unbrewed?

View File

@ -290,6 +290,8 @@ If *`formula`* is provided, summarise the paths within its current keg.
Only show formulae with multiple versions installed. Only show formulae with multiple versions installed.
* `--pinned`: * `--pinned`:
Show the versions of pinned formulae, or only the specified (pinned) formulae if *`formula`* are provided. See also `pin`, `unpin`. Show the versions of pinned formulae, or only the specified (pinned) formulae if *`formula`* are provided. See also `pin`, `unpin`.
* `--cask`:
List casks
* `-1`: * `-1`:
Force output to be one entry per line. This is the default when output is not to a terminal. Force output to be one entry per line. This is the default when output is not to a terminal.
* `-l`: * `-l`:

View File

@ -393,6 +393,10 @@ Only show formulae with multiple versions installed\.
Show the versions of pinned formulae, or only the specified (pinned) formulae if \fIformula\fR are provided\. See also \fBpin\fR, \fBunpin\fR\. Show the versions of pinned formulae, or only the specified (pinned) formulae if \fIformula\fR are provided\. See also \fBpin\fR, \fBunpin\fR\.
. .
.TP .TP
\fB\-\-cask\fR
List casks
.
.TP
\fB\-1\fR \fB\-1\fR
Force output to be one entry per line\. This is the default when output is not to a terminal\. Force output to be one entry per line\. This is the default when output is not to a terminal\.
. .