mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
13 lines
372 B
Bash
13 lines
372 B
Bash
|
# COMPLETION FUNCTION
|
||
|
if (( $+commands[fnm] )); then
|
||
|
if [[ ! -f $ZSH_CACHE_DIR/fnm_version ]] \
|
||
|
|| [[ "$(fnm --version)" != "$(< "$ZSH_CACHE_DIR/fnm_version")" ]] \
|
||
|
|| [[ ! -f $ZSH/plugins/fnm/_fnm ]]; then
|
||
|
fnm completions --shell=zsh > $ZSH/plugins/fnm/_fnm
|
||
|
fnm --version > $ZSH_CACHE_DIR/fnm_version
|
||
|
fi
|
||
|
autoload -Uz _fnm
|
||
|
_comps[fnm]=_fnm
|
||
|
fi
|
||
|
|