2 releases
Uses old Rust 2015
0.2.1 | Dec 13, 2016 |
---|---|
0.2.0 | Jun 24, 2016 |
#15 in #override
6KB
130 lines
rustup-version-name
Show the used Rust toolchain version name for the current working directory.
If you use rustup you may have toolchain overrides for certain directories. Sometimes it is good to see which one that is. Put it in your prompt and it is there when you need to know.
Install
cargo install --git https://github.com/badboy/rustup-version-name
Use
rustup-version-name
Use in shell prompt
Add the following function to your .bashrc
or .zshrc
:
__rust_prompt() {
local rustp=$(rustup-version-name)
if [ -n "$rustp" ] && [ "$rustp" != "default" ]
then
echo " $rustp"
fi
}
Add the function to your PS1
:
PS1="[%~\$(__rust_prompt)%# "
Restart your shell and your done.
Todo
- Search for override in upper directory.
License
Dependencies
~370KB