AutoYADM commit: 2025-04-18 18:15:05

This commit is contained in:
Daniel Fichtinger 2025-04-18 18:15:05 -04:00
parent 818a04a047
commit d473a0a6c4
9 changed files with 332 additions and 1 deletions

View file

@ -0,0 +1,14 @@
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