ソースを参照

Do not quote completions in $reply

With an empty list of completions, zsh would complete a space / advance
the cursor by a space when completing.
pull/231/head
Daniel Hahler 12年前
コミット
bc6be9ed9f
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      completions/pyenv.zsh

+ 1
- 1
completions/pyenv.zsh ファイルの表示

@ -14,5 +14,5 @@ _pyenv() {
completions="$(pyenv completions ${words[2,-2]})"
fi
reply=("${(ps:\n:)completions}")
reply=(${(ps:\n:)completions})
}

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