Merge pull request #11095 from nandahkrishna/fix-completions-search

completions/zsh: fix `__brew_casks()`
This commit is contained in:
Bo Anderson 2021-04-09 19:01:54 +01:00 committed by GitHub
commit 3e71860276
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,7 +84,7 @@ __brew_casks() {
local comp_cachename=brew_casks
if ! _retrieve_cache $comp_cachename; then
list=( $(brew search --cask) )
list=( $(brew casks) )
_store_cache $comp_cachename list
fi