提交 915b0e46 编写于 作者: Z Zaki Manian 提交者: Marc Cornellà

Add completion for cargo, the rust build tool

Copy of the official repository:
https://github.com/rust-lang/cargo/tree/master/src/etcSigned-off-by: NMarc Cornellà <marc.cornella@live.com>
上级 0887a7eb
此差异已折叠。
function _cargo_commands() {
local ret=1 state
_arguments ':subcommand:->subcommand' && ret=0
case $state in
subcommand)
subcommands=(
"build:Build the current project"
"clean:Clean up after a build"
"help:Help about available commands"
"new:Create a new project"
"test:Run the tests"
"update:Updates list of known packages"
"run:Builds and runs the currecnt project"
)
_describe -t subcommands 'cargo subcommands' subcommands && ret=0
esac
return ret
}
compdef _cargo_commands cargo
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册