mirror of https://github.com/jenv/jenv.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
504 B
22 lines
504 B
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
|
|
|