mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-23 16:40:24 +02:00
29341, corrected: go programming language
This commit is contained in:
parent
533f3c9d91
commit
67ce57d609
3 changed files with 26 additions and 1 deletions
|
@ -77,6 +77,7 @@ _global
|
|||
_gnu_generic
|
||||
_gnupod
|
||||
_gnutls
|
||||
_go
|
||||
_gpg
|
||||
_gphoto2
|
||||
_gprof
|
||||
|
|
18
Completion/Unix/Command/_go
Normal file
18
Completion/Unix/Command/_go
Normal file
|
@ -0,0 +1,18 @@
|
|||
#compdef gccgo gofmt 5l 6l 8l 5g 6g 8g
|
||||
|
||||
# This is for the computer language go,
|
||||
# http://glolang.org.
|
||||
|
||||
local expl pat
|
||||
|
||||
case $service in
|
||||
(<->l)
|
||||
pat="*.${service[1,-2]}"
|
||||
;;
|
||||
|
||||
(*)
|
||||
pat="*.go"
|
||||
;;
|
||||
esac
|
||||
|
||||
_wanted files expl "input file" _files -g "$pat"
|
Loading…
Add table
Add a link
Reference in a new issue