Merge pull request #150 from SiSGroup/dget
Add first draft of dget completion
This commit is contained in:
		
						commit
						f46c990c40
					
				|  | @ -0,0 +1,35 @@ | |||
| #compdef dget | ||||
| # ------------------------------------------------------------------------------ | ||||
| # Description | ||||
| # ----------- | ||||
| # | ||||
| #  Completion script for dget | ||||
| # | ||||
| # ------------------------------------------------------------------------------ | ||||
| # Authors | ||||
| # ------- | ||||
| # | ||||
| #  * Kris Shannon <kris@staff.sisgroup.com.au> | ||||
| # | ||||
| # ------------------------------------------------------------------------------ | ||||
| 
 | ||||
| _dget() { | ||||
|     local context state line expl | ||||
|     local -A opt_args | ||||
| 
 | ||||
|     _arguments -A "-*" \ | ||||
|         '(-h --help)'{-h,--help}'[Show help message]' \ | ||||
|         '(-V --version)'{-v,--version}'[Print license, copyright, and version information and exit]' \ | ||||
|         '(-q --quiet)'{-q,--quiet}'[Suppress wget/curl output]' \ | ||||
|         '(-d --download-only --build)'{-d,--download-only}'[Do not extract downloaded source]' \ | ||||
|         '(-x --extract)'{-x,--extract}'[Unpack downloaded source]' \ | ||||
|         '(-u --allow-unauthenticated)'{-u,--allow-unauthenticated}'[Make no attempt to verify source package signature]' \ | ||||
|         '(-d --download-only --build)--build[Build package with dpkg-buildpackage after download]' \ | ||||
|         '--path[Check this directory in addition to the apt archive]:DIR:_files -/' \ | ||||
|         '(--insecure)--insecure[Do not check SSL certificates when downloading]' \ | ||||
|         '(--no-cache)--no-cache[Disable server-side HTTP cache]' \ | ||||
|         "(--no-conf)--no-conf[Don't read devscripts config files]" \ | ||||
|         '1:dsc url:_urls' | ||||
| } | ||||
| 
 | ||||
| _dget "$@" | ||||
		Loading…
	
		Reference in New Issue