mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
d9ad99531f
Co-authored-by: Ziga Sebenik <ziga.sebenik@oryxgaming.com>
12 lines
372 B
Bash
12 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
|
|
|