Skip to content

Commit

Permalink
More descriptive prompts for add and remove
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipBAdams committed Jul 20, 2018
1 parent e4cbede commit 10eb082
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cargo-process.el
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ Requires Cargo clippy to be installed."
With the prefix argument, modify the command's invocation.
CRATE is the name of the crate to add.
Cargo: This command allows you to add a dependency to a Cargo.toml manifest file."
(interactive "sCrate name: ")
(interactive "sCrate(s) to add: ")
(cargo-process--start "Add" (concat cargo-process--command-add
" "
crate)))
Expand All @@ -534,7 +534,7 @@ Cargo: This command allows you to add a dependency to a Cargo.toml manifest file
With the prefix argument, modify the command's invocation.
CRATE is the name of the crate to remove.
Cargo: Remove a dependency from a Cargo.toml manifest file."
(interactive "sCrate name: ")
(interactive "sCrate to remove: ")
(cargo-process--start "Remove" (concat cargo-process--command-rm
" "
crate)))
Expand Down

0 comments on commit 10eb082

Please sign in to comment.