Skip to content

Commit 2ad447f

Browse files
committed
Auto merge of #6218 - ordovicia:alias-check, r=dwijnand
Add `c` alias for `check` This PR adds `cargo c` alias for `cargo check`. I believe that one of the most frequently used subcommands is `check`. Adding this alias would save much time. Currently, there are three aliases: `b` for `build`, `r` for `run`, `t` for `test`. I think that adding out-of-the-box `c` alias is *natural* for many developers, and these aliases would cover most of the use cases. We can add aliases via a configuration file, but I guess people would expect built-in `c` alias along with `b` and others. One problem I have come up with is that the `clean` subcommand also starts with the letter `c`. But I believe that running `check` subcommand by mistake would not hurt developers so much. Fixes #6215
2 parents 61c83ba + 2a66732 commit 2ad447f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/bin/cargo/commands/check.rs

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ use cargo::ops;
44

55
pub fn cli() -> App {
66
subcommand("check")
7+
// subcommand aliases are handled in commands::builtin_exec() and cli::expand_aliases()
8+
// .alias("c")
79
.about("Check a local package and all of its dependencies for errors")
810
.arg_package_spec(
911
"Package(s) to check",

src/bin/cargo/commands/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pub fn builtin_exec(cmd: &str) -> Option<BuiltinExec> {
4444
let exec = match cmd {
4545
"bench" => bench::exec,
4646
"build" | "b" => build::exec,
47-
"check" => check::exec,
47+
"check" | "c" => check::exec,
4848
"clean" => clean::exec,
4949
"doc" => doc::exec,
5050
"fetch" => fetch::exec,
@@ -77,6 +77,7 @@ pub fn builtin_exec(cmd: &str) -> Option<BuiltinExec> {
7777

7878
let alias_for = match cmd {
7979
"b" => Some("build"),
80+
"c" => Some("check"),
8081
"r" => Some("run"),
8182
"t" => Some("test"),
8283
_ => None,

0 commit comments

Comments
 (0)