tide/functions/_tide_remove_unusable_items.fish
2021-04-24 18:14:30 -07:00

16 lines
478 B
Fish

function _tide_remove_unusable_items
# Remove tool-specific items for tools the machine doesn't have installed
for item in chruby git nvm php rustc virtual_env
set -l cliName $item
switch $item
case virtual_env
set cliName python
end
if not type -q $cliName
_tide_find_and_remove $item tide_left_prompt_items
_tide_find_and_remove $item tide_right_prompt_items
end
end
end