From df292c69a9875bcc60651b71be0c0217156a047b Mon Sep 17 00:00:00 2001 From: conrmahr Date: Tue, 2 Sep 2025 11:25:49 -0500 Subject: [PATCH] feat: add brew search alias to brew plugin --- plugins/brew/README.md | 1 + plugins/brew/brew.plugin.zsh | 1 + 2 files changed, 2 insertions(+) diff --git a/plugins/brew/README.md b/plugins/brew/README.md index 071130737..2e23a72f1 100644 --- a/plugins/brew/README.md +++ b/plugins/brew/README.md @@ -40,6 +40,7 @@ the `brew` binary before sourcing `oh-my-zsh.sh` and it'll set up the environmen | `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. | | `brewsp` | `brew list --pinned` | List pinned formulae, or show the version of a given formula. | +| `bs` | `brew search` | Perform a substring search of cask tokens and formula names for text. | | `bsl` | `brew services list` | List all running services. | | `bsoff` | `brew services stop` | Stop the service and unregister it from launching at login (or boot). | | `bsoffa` | `bsoff --all` | Stop all started services. | diff --git a/plugins/brew/brew.plugin.zsh b/plugins/brew/brew.plugin.zsh index a582941cb..432a36076 100644 --- a/plugins/brew/brew.plugin.zsh +++ b/plugins/brew/brew.plugin.zsh @@ -52,6 +52,7 @@ alias bl='brew list' alias bo='brew outdated' alias brewp='brew pin' alias brewsp='brew list --pinned' +alias bs='brew search' alias bsl='brew services list' alias bsoff='brew services stop' alias bsoffa='bsoff --all'