ソースを参照

Merge pull request #968 from maxnordlund/patch-1

Fix fish subcommand completion
pull/1133/head
Mislav Marohnić 8年前
committed by GitHub
コミット
c310bc5f83
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      completions/rbenv.fish

+ 2
- 1
completions/rbenv.fish ファイルの表示

@ -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

読み込み中…
キャンセル
保存