mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-13 00:52:56 +00:00
10 lines
256 B
Fish
10 lines
256 B
Fish
|
function brewinfo --description "Lookup brew plugins"
|
||
|
set -l inst (brew search | 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
|