Skip to content

Commit c7e2986

Browse files
KnightKnight
Knight
authored and
Knight
committed
Add zsh autocompletion to subcommand metadata
1 parent c3ba834 commit c7e2986

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

src/etc/_cargo

+14-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ _arguments \
1616

1717
case $state in
1818
args)
19-
#TODO: add path completion to manifest-path options
2019
case $words[1] in
2120
bench)
2221
_arguments \
@@ -160,6 +159,19 @@ case $state in
160159
'--color=:colorization option:(auto always never)' \
161160
;;
162161

162+
metadata)
163+
_arguments \
164+
'(-h, --help)'{-h,--help}'[show help message]' \
165+
'(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \
166+
'(-v, --verbose)'{-v,--verbose}'[use verbose output]' \
167+
"--no-deps[output information only about the root package and don't fetch dependencies]" \
168+
'--no-default-features[do not include the default feature]' \
169+
'--manifest-path=[path to manifest]: :_files -/' \
170+
'--features=[space separated feature list]' \
171+
'--format-version=[format version(default: 1)]' \
172+
'--color=:colorization option:(auto always never)' \
173+
;;
174+
163175
new)
164176
_arguments \
165177
'--bin[use binary template]' \
@@ -373,6 +385,7 @@ local -a commands;commands=(
373385
'install:install a Rust binary'
374386
'locate-project:print "Cargo.toml" location'
375387
'login:login to remote server'
388+
'metadata:the metadata for a project in json'
376389
'new:create a new project'
377390
'owner:manage the owners of a crate on the registry'
378391
'package:assemble local package into a distributable tarball'

0 commit comments

Comments
 (0)