From a7664855a497feda738cf5912cadd9094bba38db Mon Sep 17 00:00:00 2001 From: ChrisJr404 Date: Tue, 5 May 2026 17:20:36 -0400 Subject: [PATCH] docs(brew): correct `brews` description to match function The `brews` alias was replaced by a shell function in #10135 (Dec 2021) that lists leaf formulae with their dependencies and then casks, but the README still describes it as `brew list -1` listing installed formulae or files for a given formula. Update the row in the aliases table to reflect what `brews` actually does in plugins/brew/brew.plugin.zsh. --- plugins/brew/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/brew/README.md b/plugins/brew/README.md index ab0b9cd73..07c387380 100644 --- a/plugins/brew/README.md +++ b/plugins/brew/README.md @@ -40,7 +40,7 @@ the `brew` binary before sourcing `oh-my-zsh.sh` and it'll set up the environmen | `bo` | `brew outdated` | List installed formulae that have an updated version available. | | `br` | `brew reinstall` | Reinstall a formula. | | `brewp` | `brew pin` | Pin a specified formula so that it's not upgraded. | -| `brews` | `brew list -1` | List installed formulae or the installed files for a given formula. | +| `brews` | _function_ | List installed leaf formulae with their dependencies, then casks. | | `brewsp` | `brew list --pinned` | List pinned formulae, or show the version of a given formula. | | `brh` | `brew reinstall --HEAD` | Reinstall a formula with --HEAD | | `bs` | `brew search` | Perform a substring search of cask tokens and formula names for text. |