FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nvm/bash_completion at master · nvm-sh/nvm · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
nvm-sh
/
nvm
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
10.4k
Star
94.7k
Code
Issues
337
Pull requests
57
Actions
Security and quality
3
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
nvm
/
bash_completion
Copy path
More file actions
More file actions
Latest commit
History
History
History
99 lines (79 loc) · 2.25 KB
Breadcrumbs
nvm
/
bash_completion
Copy path
File metadata and controls
99 lines (79 loc) · 2.25 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!
/usr/bin/env bash
#
bash completion for Node Version Manager (NVM)
if
!
command
-v nvm
&
>
/dev/null
;
then
return
fi
__nvm_generate_completion
() {
declare
current_word
current_word=
"
${COMP_WORDS[COMP_CWORD]}
"
#
shellcheck disable=SC2207
COMPREPLY=(
$(
compgen -W
"
$1
"
--
"
${current_word}
"
)
)
return
0
}
__nvm_commands
() {
declare
current_word
declare
command
current_word=
"
${COMP_WORDS[COMP_CWORD]}
"
COMMANDS=
'
help install uninstall use run exec
alias unalias reinstall-packages
current list ls list-remote ls-remote
install-latest-npm
cache deactivate unload
version version-remote which
'
if
[
${
#
COMP_WORDS[@]}
==
4 ]
;
then
command=
"
${COMP_WORDS[COMP_CWORD - 2]}
"
case
"
${command}
"
in
alias) __nvm_installed_nodes ;;
esac
else
case
"
${current_word}
"
in
-
*
) __nvm_options ;;
*
) __nvm_generate_completion
"
${COMMANDS}
"
;;
esac
fi
}
__nvm_options
() {
OPTIONS=
'
'
__nvm_generate_completion
"
${OPTIONS}
"
}
__nvm_installed_nodes
() {
__nvm_generate_completion
"
$(
nvm_ls
)
$(
__nvm_aliases
)
"
}
__nvm_aliases
() {
declare
aliases
aliases=
"
"
if
[
-d
"
${NVM_DIR}
/alias
"
]
;
then
aliases=
"
$(
command
cd
"
${NVM_DIR}
/alias
"
&&
command
find
"
${PWD}
"
-type f
|
command
sed
"
s:
${PWD}
/::
"
)
"
fi
echo
"
${aliases}
node stable unstable iojs
"
}
__nvm_alias
() {
__nvm_generate_completion
"
$(
__nvm_aliases
)
"
}
__nvm
() {
declare
previous_word
previous_word=
"
${COMP_WORDS[COMP_CWORD - 1]}
"
case
"
${previous_word}
"
in
use | run | exec | ls | list | uninstall) __nvm_installed_nodes ;;
alias | unalias) __nvm_alias ;;
*
) __nvm_commands ;;
esac
return
0
}
#
complete is a bash builtin, but recent versions of ZSH come with a function
#
called bashcompinit that will create a complete in ZSH. If the user is in
#
ZSH, load and run bashcompinit before calling the complete function.
if
[[
-n
${ZSH_VERSION-}
]]
;
then
#
First calling compinit (only if not called yet!)
#
and then bashcompinit as mentioned by zsh man page.
if
!
command
-v compinit
>
/dev/null
;
then
autoload -U +X compinit
&&
if
[[
${ZSH_DISABLE_COMPFIX-}
=
true
]]
;
then
compinit -u
else
compinit
fi
fi
autoload -U +X bashcompinit
&&
bashcompinit
fi
complete
-o default -F __nvm nvm
Back
|
FazBrowse Home
|
New Git URL