Sfoglia il codice sorgente

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 anni fa
parent
commit
bc6be9ed9f
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      completions/pyenv.zsh

+ 1
- 1
completions/pyenv.zsh Vedi File

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

Caricamento…
Annulla
Salva