cosmetics
This commit is contained in:
parent
129f3f78d4
commit
8911ed34fb
13
src/_golang
13
src/_golang
|
@ -30,13 +30,14 @@
|
||||||
# Description
|
# Description
|
||||||
# -----------
|
# -----------
|
||||||
#
|
#
|
||||||
# Completion script for go 1.11 (http://golang.org).
|
# Completion script for go 1.14 (http://golang.org).
|
||||||
#
|
#
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Authors
|
# Authors
|
||||||
# -------
|
# -------
|
||||||
#
|
#
|
||||||
# * Mikkel Oscar Lyderik Larsen <mikkeloscar@gmail.com>
|
# * Mikkel Oscar Lyderik Larsen <mikkeloscar@gmail.com>
|
||||||
|
# * Paul Seyfert <pseyfert.mathphys@gmail.com>
|
||||||
# * oh-my-zsh authors:
|
# * oh-my-zsh authors:
|
||||||
# https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/golang/golang.plugin.zsh
|
# https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/golang/golang.plugin.zsh
|
||||||
# * Go authors
|
# * Go authors
|
||||||
|
@ -286,21 +287,21 @@ __go_envvarvals() {
|
||||||
CGO_*FLAGS)
|
CGO_*FLAGS)
|
||||||
_dispatch $service -value-,${variable#CGO_},-default-
|
_dispatch $service -value-,${variable#CGO_},-default-
|
||||||
;;
|
;;
|
||||||
# not implemented
|
|
||||||
GODEBUG)
|
GODEBUG)
|
||||||
__go_runtimedebug
|
__go_runtimedebug
|
||||||
;;
|
;;
|
||||||
GOFLAGS)
|
GOFLAGS)
|
||||||
;&
|
# not implemented, sorry
|
||||||
GOINSECURE)
|
|
||||||
_message "not implemented"
|
|
||||||
;;
|
;;
|
||||||
|
GOINSECURE)
|
||||||
|
;&
|
||||||
GOPRIVATE)
|
GOPRIVATE)
|
||||||
;&
|
;&
|
||||||
GONOPROXY)
|
GONOPROXY)
|
||||||
;&
|
;&
|
||||||
GONOSUMDB)
|
GONOSUMDB)
|
||||||
# comma separated glob patterns
|
# comma separated glob patterns (in the syntax of Go's path.Match)
|
||||||
|
_message "comma separated glob pattern"
|
||||||
;;
|
;;
|
||||||
GOSUMDB)
|
GOSUMDB)
|
||||||
_message "e.g. sum.golang.org+<publickey> https://sum.golang.org"
|
_message "e.g. sum.golang.org+<publickey> https://sum.golang.org"
|
||||||
|
|
Loading…
Reference in New Issue