Browse Source

Fixes #193 ZSH completion do not add the space anymore

The trick is done by configuring compctl to suffix the completion with nothing (`-S ""`).
http://zsh.sourceforge.net/Doc/Release/Completion-Using-compctl.html#Control-Flags
pull/257/head
Brice Dutheil 6 years ago
parent
commit
6b9ff9cbea
  1. 2
      completions/jenv.zsh

2
completions/jenv.zsh

@ -2,7 +2,7 @@ if [[ ! -o interactive ]]; then
return return
fi fi
compctl -K _jenv jenv compctl -S "" -K _jenv jenv
_jenv() { _jenv() {
local words completions local words completions

Loading…
Cancel
Save