diff options
author | Sung kyung Park <44727001+sungkpark@users.noreply.github.com> | 2023-01-09 20:02:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-09 19:02:44 +0000 |
commit | 746424f1614a70a8c318979f5cf348babe603d54 (patch) | |
tree | 8b611e6c6da53958f27a8db161b2193e2f716ed4 /plugins/brew/README.md | |
parent | 08c3ce8882ea0bbbfb0a734f1f8870a72ba21f8a (diff) | |
download | zsh-746424f1614a70a8c318979f5cf348babe603d54.tar.gz zsh-746424f1614a70a8c318979f5cf348babe603d54.tar.bz2 zsh-746424f1614a70a8c318979f5cf348babe603d54.zip |
feat(homebrew): Adding new alias for brew uninstall --zap as buz closes #10329 (#10331)
* Adding new alias for brew uninstall --zap as buz
* Closes #10329
* add buz
* closes #10329
* Fix typo
* Closes ohmyzsh#10329
* Closes ohmyzsh#10329
Co-authored-by: Sung <sungkyungpark@bol.com>
Co-authored-by: Robby Russell <robby@planetargon.com>
Diffstat (limited to 'plugins/brew/README.md')
-rw-r--r-- | plugins/brew/README.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/brew/README.md b/plugins/brew/README.md index 9ce2c5bb0..cfaedccd8 100644 --- a/plugins/brew/README.md +++ b/plugins/brew/README.md @@ -21,6 +21,7 @@ defined for convenience. | -------- | ------------------------------------- | ------------------------------------------------------------------- | | `bcubc` | `brew upgrade --cask && brew cleanup` | Update outdated casks, then run cleanup. | | `bcubo` | `brew update && brew outdated --cask` | Update Homebrew data, then list outdated casks. | +| `bcubc` | `brew upgrade --cask && brew cleanup` | Update outdated casks, then run cleanup. | | `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. | @@ -28,6 +29,8 @@ defined for convenience. | `bubo` | `brew update && brew outdated` | Update Homebrew data, then list outdated formulae and casks. | | `bubu` | `bubo && bubc` | Do the last two operations above. | | `buf` | `brew upgrade --formula` | Upgrade only formulas (not casks). | +| `buz` | `brew uninstall --zap` | Remove all files associated with a cask. | + ## Completion |