summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMing Aldrich-Gan <mingaldrichgan@gmail.com>2021-12-17 18:15:39 -0600
committerGitHub <noreply@github.com>2021-12-17 16:15:39 -0800
commit904f8685f75ff5dd3f544f8c6f2cabb8e5952e9a (patch)
tree55cc178926e1d59e8863b39da4f7fce89be6a6ea /plugins
parent3a3a44c7b583d5518f28c8679298256bdbd0780b (diff)
downloadzsh-904f8685f75ff5dd3f544f8c6f2cabb8e5952e9a.tar.gz
zsh-904f8685f75ff5dd3f544f8c6f2cabb8e5952e9a.tar.bz2
zsh-904f8685f75ff5dd3f544f8c6f2cabb8e5952e9a.zip
feat(brew): improve `brews` list layout (#10135)
This is an improvement (in my opinion) to the `brews` command that prints each leaf formula (in white), followed by its dependencies (in blue), on each line. Compared to the existing flat list of formulae, the new layout is both more compact and more informative, by differentiating leaves from dependencies at a glance. Screenshot: <img width="530" src="https://user-images.githubusercontent.com/1753319/130641713-b78535c9-e3f5-4dbb-80f8-22bc00e1129d.png">
Diffstat (limited to 'plugins')
-rw-r--r--plugins/brew/brew.plugin.zsh14
1 files changed, 13 insertions, 1 deletions
diff --git a/plugins/brew/brew.plugin.zsh b/plugins/brew/brew.plugin.zsh
index 532dd9be7..070a083d0 100644
--- a/plugins/brew/brew.plugin.zsh
+++ b/plugins/brew/brew.plugin.zsh
@@ -1,5 +1,4 @@
alias brewp='brew pin'
-alias brews='brew list -1'
alias brewsp='brew list --pinned'
alias bubo='brew update && brew outdated'
alias bubc='brew upgrade && brew cleanup'
@@ -7,3 +6,16 @@ alias bubu='bubo && bubc'
alias buf='brew upgrade --formula'
alias bcubo='brew update && brew outdated --cask'
alias bcubc='brew upgrade --cask && brew cleanup'
+
+function brews() {
+ local formulae="$(brew leaves | xargs brew deps --installed --for-each)"
+ local casks="$(brew list --cask)"
+
+ local blue="$(tput setaf 4)"
+ local bold="$(tput bold)"
+ local off="$(tput sgr0)"
+
+ echo "${blue}==>${off} ${bold}Formulae${off}"
+ echo "${formulae}" | sed "s/^\(.*\):\(.*\)$/\1${blue}\2${off}/"
+ echo "\n${blue}==>${off} ${bold}Casks${off}\n${casks}"
+}