blob: e5c2a4649c07566b31813b7a83fcb9c70bc720e6 (
plain)
1
2
3
4
5
6
7
8
|
# 3rd party completion loader for nvm -*- shell-script -*-
#
# This serves as a fallback in case the completion is not installed otherwise.
# shellcheck disable=SC1091
[[ ${NVM_DIR-} && -r $NVM_DIR/bash_completion ]] && . "$NVM_DIR"/bash_completion
# ex: filetype=sh
|