mirror of
https://github.com/rust-lang/cargo
synced 2024-11-05 18:50:39 +00:00
Add completions for cargo remove
This commit is contained in:
parent
882c5dd830
commit
3b6d2c4c8c
2 changed files with 13 additions and 0 deletions
|
@ -241,6 +241,17 @@ _cargo() {
|
|||
_arguments -s -S $common $manifest
|
||||
;;
|
||||
|
||||
remove | rm)
|
||||
_arguments -s -A "^--" $common $manifest \
|
||||
"--dev[remove as a dev dependency]" \
|
||||
"--build[remove as a build dependency]" \
|
||||
"--target=[remove as a dependency from the given target platform]" \
|
||||
"--dry-run[don't actually write the manifest]" \
|
||||
'(-p --package)'{-p+,--package=}'[package to remove from]:package:_cargo_package_names' \
|
||||
'1: :_guard "^-*" "crate name"' \
|
||||
'*:args:_default'
|
||||
;;
|
||||
|
||||
run | r)
|
||||
_arguments -s -S $common $parallel $features $msgfmt $triple $target $manifest \
|
||||
'--example=[name of the bin target]:name:_cargo_example_names' \
|
||||
|
|
|
@ -73,6 +73,8 @@ _cargo()
|
|||
local opt__pkgid="$opt_common $opt_mani $opt_lock $opt_pkg"
|
||||
local opt__publish="$opt_common $opt_mani $opt_feat $opt_lock $opt_parallel --allow-dirty --dry-run --token --no-verify --index --registry --target --target-dir"
|
||||
local opt__read_manifest="$opt_help $opt_quiet $opt_verbose $opt_mani $opt_color $opt_lock --no-deps"
|
||||
local opt__remove="$opt_common $opt_pkg $opt_lock $opt_mani --dry-run --dev --build --target"
|
||||
local opt__rm="$opt__remove"
|
||||
local opt__report="$opt_help $opt_verbose $opt_color future-incompat future-incompatibilities"
|
||||
local opt__report__future_incompat="$opt_help $opt_verbose $opt_color $opt_pkg --id"
|
||||
local opt__run="$opt_common $opt_pkg $opt_feat $opt_mani $opt_lock $opt_parallel --message-format --target --bin --example --release --target-dir --profile"
|
||||
|
|
Loading…
Reference in a new issue