This website works better with JavaScript.
Home
Explore
Help
Sign In
isprogram
/
pyenv
mirror of
https://github.com/pyenv/pyenv.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
241
Wiki
Activity
Browse Source
Merge pull request
#831
from maxnordlund/patch-1
Fix fish subcommand completion
pull/836/head
Yamashita, Yuu
9 years ago
committed by
GitHub
parent
688c0af0cd
e09d61780c
commit
235eea3003
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
completions/pyenv.fish
+ 2
- 1
completions/pyenv.fish
View File
@ -18,5 +18,6 @@ end
complete
-f -c pyenv -n
'__fish_pyenv_needs_command'
-a
'(pyenv commands)'
for
cmd
in
(
pyenv commands
)
complete
-f -c pyenv -n
"
__fish_pyenv_using_command
$cmd
"
-a
"
(pyenv completions
$cmd
)
"
complete
-f -c pyenv -n
"
__fish_pyenv_using_command
$cmd
"
-a
\
"(pyenv completions (commandline -opc)[2..-1])"
end
Write
Preview
Loading…
Cancel
Save