Sfoglia il codice sorgente

Merge pull request #968 from maxnordlund/patch-1

Fix fish subcommand completion
pull/1133/head
Mislav Marohnić 8 anni fa
committed by GitHub
parent
commit
c310bc5f83
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      completions/rbenv.fish

+ 2
- 1
completions/rbenv.fish Vedi File

@ -18,5 +18,6 @@ end
complete -f -c rbenv -n '__fish_rbenv_needs_command' -a '(rbenv commands)'
for cmd in (rbenv commands)
complete -f -c rbenv -n "__fish_rbenv_using_command $cmd" -a "(rbenv completions $cmd)"
complete -f -c rbenv -n "__fish_rbenv_using_command $cmd" -a \
"(rbenv completions (commandline -opc)[2..-1])"
end

Caricamento…
Annulla
Salva