mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 17:30:08 +00:00
Fix formatting of gb plugin completion
This commit is contained in:
parent
d0ea3f22b1
commit
a29f8f7659
1 changed files with 101 additions and 107 deletions
|
@ -1,114 +1,108 @@
|
||||||
function _gb_commands() {
|
_gb () {
|
||||||
local ret=1 state
|
local ret=1 state
|
||||||
_arguments -C ':command:->command' '*::options:->options' && ret=0
|
_arguments -C ':command:->command' '*::options:->options' && ret=0
|
||||||
|
|
||||||
case $state in
|
|
||||||
(command)
|
|
||||||
|
|
||||||
local -a subcommands
|
|
||||||
subcommands=(
|
|
||||||
"build:build a package"
|
|
||||||
"doc:show documentation for a package or symbol"
|
|
||||||
"env:print project environment variables"
|
|
||||||
"generate:generate Go files by processing source"
|
|
||||||
"help:displays the help"
|
|
||||||
"info:info returns information about this project"
|
|
||||||
"list:list the packages named by the importpaths"
|
|
||||||
"test:test packages"
|
|
||||||
"vendor:manage your vendored dependencies"
|
|
||||||
)
|
|
||||||
_describe -t subcommands 'gb subcommands' subcommands && ret=0
|
|
||||||
;;
|
|
||||||
|
|
||||||
(options)
|
|
||||||
case $line[1] in
|
|
||||||
(build)
|
|
||||||
_arguments \
|
|
||||||
-f'[ignore cached packages]' \
|
|
||||||
-F'[do not cache packages]' \
|
|
||||||
-q'[decreases verbosity]' \
|
|
||||||
-P'[the number of build jobs to run in parallel]' \
|
|
||||||
-R'[sets the base of the project root search path]' \
|
|
||||||
-dotfile'[output a dot formatted file of the build steps]' \
|
|
||||||
-ldflags'["flag list" arguments to pass to the linker]' \
|
|
||||||
-gcflags'["arg list" arguments to pass to the compiler]' \
|
|
||||||
-race'[enable data race detection]' \
|
|
||||||
-tags'["tag list" additional build tags]'
|
|
||||||
;;
|
|
||||||
(list)
|
|
||||||
_arguments \
|
|
||||||
-f'[alternate format for the list, using the syntax of package template]' \
|
|
||||||
-s'[read format template from STDIN]' \
|
|
||||||
-json'[prints output in structured JSON format]'
|
|
||||||
;;
|
|
||||||
(test)
|
|
||||||
_arguments \
|
|
||||||
-v'[print output from test subprocess]' \
|
|
||||||
-ldflags'["flag list" arguments to pass to the linker]' \
|
|
||||||
-gcflags'["arg list" arguments to pass to the compiler]' \
|
|
||||||
-race'[enable data race detection]' \
|
|
||||||
-tags'["tag list" additional build tags]'
|
|
||||||
;;
|
|
||||||
(vendor)
|
|
||||||
__gb-vendor
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
return ret
|
|
||||||
}
|
|
||||||
|
|
||||||
compdef _gb_commands gb
|
|
||||||
|
|
||||||
__gb-vendor ()
|
|
||||||
{
|
|
||||||
local curcontext="$curcontext" state line
|
|
||||||
|
|
||||||
_arguments -C ':command:->command' '*::options:->options'
|
|
||||||
|
|
||||||
case $state in
|
case $state in
|
||||||
(command)
|
(command)
|
||||||
|
local -a subcommands
|
||||||
local -a subcommands
|
subcommands=(
|
||||||
subcommands=(
|
"build:build a package"
|
||||||
'delete:deletes a local dependency'
|
"doc:show documentation for a package or symbol"
|
||||||
'fetch:fetch a remote dependency'
|
"env:print project environment variables"
|
||||||
'list:lists dependencies, one per line'
|
"generate:generate Go files by processing source"
|
||||||
'purge:remove all unreferenced dependencies'
|
"help:displays the help"
|
||||||
'restore:restore dependencies from the manifest'
|
"info:info returns information about this project"
|
||||||
'update:update a local dependency'
|
"list:list the packages named by the importpaths"
|
||||||
)
|
"test:test packages"
|
||||||
_describe -t subcommands 'gb vendor subcommands' subcommands && ret=0
|
"vendor:manage your vendored dependencies"
|
||||||
|
)
|
||||||
|
_describe -t subcommands 'gb subcommands' subcommands && ret=0
|
||||||
;;
|
;;
|
||||||
|
(options)
|
||||||
|
case $line[1] in
|
||||||
|
(build)
|
||||||
|
_arguments \
|
||||||
|
-f'[ignore cached packages]' \
|
||||||
|
-F'[do not cache packages]' \
|
||||||
|
-q'[decreases verbosity]' \
|
||||||
|
-P'[the number of build jobs to run in parallel]' \
|
||||||
|
-R'[sets the base of the project root search path]' \
|
||||||
|
-dotfile'[output a dot formatted file of the build steps]' \
|
||||||
|
-ldflags'["flag list" arguments to pass to the linker]' \
|
||||||
|
-gcflags'["arg list" arguments to pass to the compiler]' \
|
||||||
|
-race'[enable data race detection]' \
|
||||||
|
-tags'["tag list" additional build tags]'
|
||||||
|
;;
|
||||||
|
(list)
|
||||||
|
_arguments \
|
||||||
|
-f'[alternate format for the list, using the syntax of package template]' \
|
||||||
|
-s'[read format template from STDIN]' \
|
||||||
|
-json'[prints output in structured JSON format]'
|
||||||
|
;;
|
||||||
|
(test)
|
||||||
|
_arguments \
|
||||||
|
-v'[print output from test subprocess]' \
|
||||||
|
-ldflags'["flag list" arguments to pass to the linker]' \
|
||||||
|
-gcflags'["arg list" arguments to pass to the compiler]' \
|
||||||
|
-race'[enable data race detection]' \
|
||||||
|
-tags'["tag list" additional build tags]'
|
||||||
|
;;
|
||||||
|
(vendor)
|
||||||
|
_gb-vendor
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
(options)
|
return ret
|
||||||
case $line[1] in
|
}
|
||||||
(delete)
|
|
||||||
_arguments \
|
compdef _gb gb
|
||||||
-all'[remove all dependencies]'
|
|
||||||
;;
|
_gb-vendor () {
|
||||||
(fetch)
|
local curcontext="$curcontext" state line
|
||||||
_arguments \
|
_arguments -C ':command:->command' '*::options:->options'
|
||||||
-branch'[fetch from a particular branch]' \
|
|
||||||
-no-recurse'[do not fetch recursively]' \
|
case $state in
|
||||||
-tag'[fetch the specified tag]' \
|
(command)
|
||||||
-revision'[fetch the specific revision from the branch (if supplied)]' \
|
local -a subcommands
|
||||||
-precaire'[allow the use of insecure protocols]' \
|
subcommands=(
|
||||||
;;
|
'delete:deletes a local dependency'
|
||||||
(list)
|
'fetch:fetch a remote dependency'
|
||||||
_arguments \
|
'list:lists dependencies, one per line'
|
||||||
-f'[controls the template used for printing each manifest entry]'
|
'purge:remove all unreferenced dependencies'
|
||||||
;;
|
'restore:restore dependencies from the manifest'
|
||||||
(restore)
|
'update:update a local dependency'
|
||||||
_arguments \
|
)
|
||||||
-precaire'[allow the use of insecure protocols]'
|
_describe -t subcommands 'gb vendor subcommands' subcommands && ret=0
|
||||||
;;
|
;;
|
||||||
(update)
|
(options)
|
||||||
_arguments \
|
case $line[1] in
|
||||||
-all'[update all dependencies in the manifest or supply a given dependency]' \
|
(delete)
|
||||||
-precaire'[allow the use of insecure protocols]'
|
_arguments \
|
||||||
;;
|
-all'[remove all dependencies]'
|
||||||
esac
|
;;
|
||||||
|
(fetch)
|
||||||
|
_arguments \
|
||||||
|
-branch'[fetch from a particular branch]' \
|
||||||
|
-no-recurse'[do not fetch recursively]' \
|
||||||
|
-tag'[fetch the specified tag]' \
|
||||||
|
-revision'[fetch the specific revision from the branch (if supplied)]' \
|
||||||
|
-precaire'[allow the use of insecure protocols]' \
|
||||||
|
;;
|
||||||
|
(list)
|
||||||
|
_arguments \
|
||||||
|
-f'[controls the template used for printing each manifest entry]'
|
||||||
|
;;
|
||||||
|
(restore)
|
||||||
|
_arguments \
|
||||||
|
-precaire'[allow the use of insecure protocols]'
|
||||||
|
;;
|
||||||
|
(update)
|
||||||
|
_arguments \
|
||||||
|
-all'[update all dependencies in the manifest or supply a given dependency]' \
|
||||||
|
-precaire'[allow the use of insecure protocols]'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue