fish: functions: Drop aliases for cargo

We will introduce abbreviations in the next commit.
This commit is contained in:
Sanchayan Maity 2023-06-09 19:40:19 +05:30
parent 5a1883fb2d
commit 0fdc4b18c7
Signed by: sanchayanmaity
GPG Key ID: 6F6A0609C12038F3
6 changed files with 0 additions and 18 deletions

View File

@ -1,3 +0,0 @@
function cbD --wraps='cargo doc --open' --description 'alias cbD=cargo doc --open'
cargo doc --open $argv
end

View File

@ -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

View File

@ -1,3 +0,0 @@
function cbb --wraps='cargo build --all' --description 'alias cbb=cargo build --all'
cargo build --all $argv
end

View File

@ -1,3 +0,0 @@
function cbc --wraps='cargo clean' --description 'alias cbc=cargo clean'
cargo clean $argv
end

View File

@ -1,3 +0,0 @@
function cbd --wraps='cargo doc' --description 'alias cbd=cargo doc'
cargo doc $argv
end

View File

@ -1,3 +0,0 @@
function cbu --wraps='cargo update' --description 'alias cbu=cargo update'
cargo update $argv
end