fish: Add cargo add/remove --build abbreviations

This commit is contained in:
Donovan Glover 2023-08-04 21:39:04 -04:00
parent 937caf1642
commit b0adf48673
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -96,11 +96,13 @@
cin = "cargo info"; cin = "cargo info";
cu = "cargo update"; cu = "cargo update";
ca = "cargo add"; ca = "cargo add";
cab = "cargo add --build";
cb = "cargo build"; cb = "cargo build";
cr = "cargo run"; cr = "cargo run";
cs = "cargo search"; cs = "cargo search";
cn = "cargo new"; cn = "cargo new";
crm = "cargo remove"; crm = "cargo remove";
crmb = "cargo remove --build";
cc = "cargo clippy"; cc = "cargo clippy";
cf = "cargo fmt"; cf = "cargo fmt";