forked from jenv/jenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jenv#5 from twlz0ne/add-fish-shell-support
Add fish shell support
- Loading branch information
Showing
2 changed files
with
70 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
function __fish_jenv_needs_command | ||
set cmd (commandline -opc) | ||
if [ (count $cmd) -eq 1 -a $cmd[1] = 'jenv' ] | ||
return 0 | ||
end | ||
return 1 | ||
end | ||
|
||
function __fish_jenv_using_command | ||
set cmd (commandline -opc) | ||
if [ (count $cmd) -gt 1 ] | ||
if [ $argv[1] = $cmd[2] ] | ||
return 0 | ||
end | ||
end | ||
return 1 | ||
end | ||
|
||
complete -f -c jenv -n '__fish_jenv_needs_command' -a '(jenv commands)' | ||
for cmd in (jenv commands) | ||
complete -f -c jenv -n "__fish_jenv_using_command $cmd" -a "(jenv completions $cmd)" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters