cargo.plugin.zsh 310 B

1234567
  1. print ${(%):-'%F{yellow}The `cargo` plugin is deprecated and has been moved to the `rust` plugin.'}
  2. print ${(%):-'Please update your .zshrc to use the `%Brust%b` plugin instead.%f'}
  3. (( ${fpath[(Ie)$ZSH/plugins/rust]} )) || {
  4. fpath=("$ZSH/plugins/rust" $fpath)
  5. source "$ZSH/plugins/rust/rust.plugin.zsh"
  6. }