summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2014-03-18 21:01:23 -0700
committerRui Ueyama <ruiu@google.com>2014-03-18 21:01:23 -0700
commit9acc8e44387c2b125c88d85f1ad52757c5d5c4f6 (patch)
treef62224361386cdd95c085bef60b070bbfb36d7c7 /misc
parent43b1fd4fba0c6fe492d9322dac6eb9bbe65484bd (diff)
downloadgo-9acc8e44387c2b125c88d85f1ad52757c5d5c4f6.tar.gz
misc/bash/go: remove "doc" subcommand autocompletion
"go doc" has been removed in CL 17799. LGTM=iant R=golang-codereviews, iant CC=golang-codereviews https://codereview.appspot.com/77420045 Committer: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/bash/go5
1 files changed, 1 insertions, 4 deletions
diff --git a/misc/bash/go b/misc/bash/go
index d806a8147..90defda82 100644
--- a/misc/bash/go
+++ b/misc/bash/go
@@ -20,7 +20,7 @@ _go()
local cmd="${COMP_WORDS[1]}"
- local cmds="build clean env doc fix fmt get
+ local cmds="build clean env fix fmt get
install list run test tool version vet"
local addhelp="gopath importpath remote
testflag testfunc"
@@ -88,9 +88,6 @@ _go()
COMPREPLY=(`_go_importpath "$cur"`)
fi
;;
- 'doc')
- COMPREPLY=(`_go_importpath "$cur"`)
- ;;
'fix')
COMPREPLY=(`_go_importpath "$cur"`)
;;