aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorLukas2014-09-12 03:25:00 +0200
committerJack Nagel2014-09-11 20:57:01 -0500
commit045639b445e323ff5342b7caf64ca120bf9fce30 (patch)
tree473e9f41a0fd0ab5a34c93c0190adbbabf9abb6c /Library
parent45e07c0e85c89583c675632ed3fb7da1a32a4180 (diff)
downloadhomebrew-045639b445e323ff5342b7caf64ca120bf9fce30.tar.bz2
Prefix Go zsh completion with an underscore
Closes #32247. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/go.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/go.rb b/Library/Formula/go.rb
index 7a8f23d7b..d67dc116f 100644
--- a/Library/Formula/go.rb
+++ b/Library/Formula/go.rb
@@ -20,7 +20,7 @@ class Go < Formula
def install
# install the completion scripts
bash_completion.install 'misc/bash/go' => 'go-completion.bash'
- zsh_completion.install 'misc/zsh/go' => 'go'
+ zsh_completion.install 'misc/zsh/go' => '_go'
# host platform (darwin) must come last in the targets list
if build.include? 'cross-compile-all'