1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-06-14 11:51:42 +00:00

Add support for nvm

This commit is contained in:
Zeh Rizzatti
2012-12-13 12:10:55 -03:00
committed by Sorin Ionescu
parent d198c08db5
commit 185235003e
3 changed files with 56 additions and 2 deletions

View File

@ -0,0 +1,25 @@
#
# Exposes information about the Node.js environment via the $node_info
# associative array.
#
# Authors:
# Zeh Rizzatti <zehrizzatti@gmail.com>
#
local version
local version_format
local version_formatted
unset node_info
typeset -gA node_info
if (( $+functions[nvm_version] )); then
version="${$(nvm_version)#v}"
fi
if [[ -n "$version" ]]; then
zstyle -s ':prezto:module:node:info:version' format 'version_format'
zformat -f version_formatted "$version_format" "v:$version"
node_info[version]="$version_formatted"
fi