ソースを参照

Add zsh support for completion of full command line

pull/360/head^2
Sam Stephenson 13年前
コミット
f635c8715c
1個のファイルの変更2行の追加3行の削除
  1. +2
    -3
      completions/rbenv.zsh

+ 2
- 3
completions/rbenv.zsh ファイルの表示

@ -5,14 +5,13 @@ fi
compctl -K _rbenv rbenv
_rbenv() {
local word words completions
local words completions
read -cA words
word="${words[2]}"
if [ "${#words}" -eq 2 ]; then
completions="$(rbenv commands)"
else
completions="$(rbenv completions "${word}")"
completions="$(rbenv completions ${words[2,-1]})"
fi
reply=("${(ps:\n:)completions}")

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