Use nospace option for zsh

This commit is contained in:
Seth Vargo 2017-08-29 12:55:27 -04:00
parent 2100d1b06c
commit 0c517573da
No known key found for this signature in database
GPG Key ID: C921994F9C27E0FF
1 changed files with 1 additions and 1 deletions

View File

@ -35,5 +35,5 @@ func (z zsh) Uninstall(cmd, bin string) error {
}
func (zsh) cmd(cmd, bin string) string {
return fmt.Sprintf("complete -C %s %s", bin, cmd)
return fmt.Sprintf("complete -o nospace -C %s %s", bin, cmd)
}