From 1e152f1417ce6df3d4959fc44ce15d48a75cc89f Mon Sep 17 00:00:00 2001 From: Joshua McKinney Date: Wed, 14 Sep 2016 10:12:46 -0500 Subject: Fix first _brew_cask completion function call Without a call to _brew_cask at the end of the script, the first completion does not work as zsh just autoloads the function without executing it. --- share/zsh/site-functions/_brew_cask | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/zsh/site-functions/_brew_cask b/share/zsh/site-functions/_brew_cask index 2fd65c4d6..7120dcbf5 100644 --- a/share/zsh/site-functions/_brew_cask +++ b/share/zsh/site-functions/_brew_cask @@ -211,3 +211,5 @@ _brew_cask() __brew_cask_command "$line[1]" ;; esac } + +_brew_cask "$@" -- cgit v1.2.3