Also check for python3 before removing item (fixes #162)

This commit is contained in:
Ilan Cosman 2021-06-03 13:12:38 -07:00
parent a85c577c81
commit 24b981e97c

View File

@ -1,13 +1,13 @@
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 cli_name $item
set -l cli_names $item
switch $item
case virtual_env
set cli_name python
set cli_names python python3
end
if not type -q $cli_name
if not type -q $cli_names
_tide_find_and_remove $item tide_left_prompt_items
_tide_find_and_remove $item tide_right_prompt_items
end