diff options
author | 2020-11-02 13:17:40 -0800 | |
---|---|---|
committer | 2020-11-02 13:17:40 -0800 | |
commit | bbdbe08bd73fa9dcd92c613874d06fe719059326 (patch) | |
tree | 21190412accda65e44529d0296e5e4cb049b6f28 | |
parent | Merge branch 'tk/credential-config' (diff) | |
parent | completion: fix zsh installation instructions (diff) | |
download | tgif-bbdbe08bd73fa9dcd92c613874d06fe719059326.tar.xz |
Merge branch 'lo/zsh-completion'
Update instructions for command line completion (in contrib/) for zsh.
* lo/zsh-completion:
completion: fix zsh installation instructions
-rw-r--r-- | contrib/completion/git-completion.zsh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.zsh b/contrib/completion/git-completion.zsh index ce47e86b60..107869036d 100644 --- a/contrib/completion/git-completion.zsh +++ b/contrib/completion/git-completion.zsh @@ -9,13 +9,14 @@ # # If your script is somewhere else, you can configure it on your ~/.zshrc: # -# zstyle ':completion:*:*:git:*' script ~/.git-completion.zsh +# zstyle ':completion:*:*:git:*' script ~/.git-completion.bash # # The recommended way to install this script is to make a copy of it in # ~/.zsh/ directory as ~/.zsh/git-completion.zsh and then add the following # to your ~/.zshrc file: # # fpath=(~/.zsh $fpath) +# autoload -Uz compinit && compinit complete () { |