fish: functions: Drop aliases for cargo
We will introduce abbreviations in the next commit.
This commit is contained in:
parent
5a1883fb2d
commit
0fdc4b18c7
6 changed files with 0 additions and 18 deletions
|
@ -1,3 +0,0 @@
|
|||
function cbD --wraps='cargo doc --open' --description 'alias cbD=cargo doc --open'
|
||||
cargo doc --open $argv
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function cba --wraps='cargo update && cargo build --all && cargo doc' --description 'alias cba=cargo update && cargo build --all && cargo doc'
|
||||
cargo update && cargo build --all && cargo doc $argv
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function cbb --wraps='cargo build --all' --description 'alias cbb=cargo build --all'
|
||||
cargo build --all $argv
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function cbc --wraps='cargo clean' --description 'alias cbc=cargo clean'
|
||||
cargo clean $argv
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function cbd --wraps='cargo doc' --description 'alias cbd=cargo doc'
|
||||
cargo doc $argv
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function cbu --wraps='cargo update' --description 'alias cbu=cargo update'
|
||||
cargo update $argv
|
||||
end
|
Loading…
Reference in a new issue