You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
444 B
14 lines
444 B
function _nvm_list |
|
set --local versions $nvm_data/* |
|
|
|
set --query versions[1] && |
|
string match --entire --regex -- ( |
|
string replace --all -- $nvm_data/ "" $versions | |
|
string match --regex -- "v\d.+" | |
|
string escape --style=regex | |
|
string join "|" |
|
) <$nvm_data/.index |
|
|
|
command --all node | |
|
string match --quiet --invert --regex -- "^$nvm_data" && echo system |
|
end
|
|
|