Files
dotfiles/dot_bash_it/completion/available/cargo.completion.bash
2022-05-05 22:20:02 +02:00

7 lines
166 B
Bash

# shellcheck shell=bash
# cargo (Rust package manager) completion
if _binary_exists rustup && _binary_exists cargo; then
eval "$(rustup completions bash cargo)"
fi