home-config/fish/functions/_tide_item_rustc.fish

51bdc7674c132f013c02c8b5b4c5f671a5a2de1c · 195 B · 6 lines raw

1 function _tide_item_rustc
2 if path is $_tide_parent_dirs/Cargo.toml
3 rustc --version | string match -qr "(?<v>[\d.]+)"
4 _tide_print_item rustc $tide_rustc_icon' ' $v
5 end
6 end