dotfiles/fish.configlink/functions/brewinfo.fish
2021-04-10 19:31:52 -04:00

10 lines
258 B
Fish

function brewinfo --description "Lookup brew plugins"
set -l inst (brew formulae | eval "fzf $FZF_DEFAULT_OPTS -m --header='[brew:info]'")
if not test (count $inst) = 0
for prog in $inst
brew info "$prog"
end
end
end