dotfiles/fish/.config/fish/conf.d/rust-abbr.fish
Sanchayan Maity 2925d49c8e
fish: conf.d: Update Rust abbreviations
`--all` is deprecated and is just an alias to `--workspace`. Add an
abbreviation to exclude building of packages.
2023-11-04 10:42:15 +05:30

14 lines
408 B
Fish

abbr radd 'cargo add'
abbr rbuild 'cargo build --workspace'
abbr rclean 'cargo clean'
abbr rcache 'cargo-cache'
abbr rdel 'cargo rm'
abbr rdoc 'cargo doc'
abbr rdoco 'cargo doc --open'
abbr rexclude 'cargo build --workspace --exclude'
abbr rout 'cargo outdated'
abbr rudeps 'cargo udeps'
abbr rupdate 'cargo update'
abbr rupgrade 'cargo upgrade'
abbr rversion 'cargo set-version'