diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2017-07-31 00:52:31 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2017-07-31 00:52:49 +0000 |
commit | 562482a49505774f3b24e05297bcc42b68624dfb (patch) | |
tree | 8801a90ccc0e37dc44ae69458385dabb0ba38d6a /Completion | |
parent | 43e55a9bcd2c90124a751f2597d2f33cb6e3c042 (diff) | |
download | zsh-562482a49505774f3b24e05297bcc42b68624dfb.tar.gz zsh-562482a49505774f3b24e05297bcc42b68624dfb.tar.xz zsh-562482a49505774f3b24e05297bcc42b68624dfb.zip |
unposted: _git: Fix style lookup for 'max-verbose'.
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_git | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index aacd3bfd7..ce8a4049d 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -5515,7 +5515,7 @@ __git_describe_branch () { shift 3 integer maxverbose - if zstyle -s :completion:$curcontext max-verbose maxverbose && + if zstyle -s :completion:$curcontext: max-verbose maxverbose && (( ${compstate[nmatches]} <= maxverbose )); then local __c local -a __commits |