1
0
Fork 0
mirror of https://github.com/SeriousBug/dotfiles synced 2024-05-19 11:19:04 -05:00
dotfiles/fish/functions/_nvm_version_deactivate.fish
2022-03-06 23:48:41 -05:00

6 lines
233 B
Fish

function _nvm_version_deactivate --argument-names v
test "$nvm_current_version" = "$v" && set --erase nvm_current_version
set --local index (contains --index -- $nvm_data/$v/bin $PATH) &&
set --erase PATH[$index]
end