2024-12-15 22:07:18 +01:00
|
|
|
function _tide_item_rustc
|
|
|
|
|
if path is $_tide_parent_dirs/Cargo.toml
|
2026-05-27 21:47:46 +02:00
|
|
|
type -q rustc && set -f cmd 'rustc --version' ||
|
|
|
|
|
begin
|
|
|
|
|
type -q rustup && set -f cmd 'rustup show active-toolchain -v'
|
|
|
|
|
end &&
|
|
|
|
|
eval "$cmd" | string match -qr "(?<v>\d+\.\d+\.\d+)" &&
|
|
|
|
|
_tide_print_item rustc $tide_rustc_icon' ' $v
|
2024-12-15 22:07:18 +01:00
|
|
|
end
|
|
|
|
|
end
|