8 lines
163 B
Bash
8 lines
163 B
Bash
#!/usr/bin/env bash
|
|
|
|
# cargo (Rust package manager) completion
|
|
|
|
if _binary_exists rustup && _binary_exists cargo; then
|
|
eval "$(rustup completions bash cargo)"
|
|
fi
|