Merge pull request #50 from sethvargo/sethvargo/nospace

Use nospace option for zsh
This commit is contained in:
Eyal Posener 2017-08-29 20:11:12 +03:00 committed by GitHub
commit 9f41f7636a
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)
}