diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2015-01-24 08:05:02 +0000 |
---|---|---|
committer | Frank Terbeck <ft@bewatermyfriend.org> | 2015-01-25 01:42:06 +0100 |
commit | 54bfcf5af18fbb841118e51b6c5325872770b52b (patch) | |
tree | 47ce564f4989bcaea4ec903939345b3f9921bf86 /Completion/Zsh/Command/_zstyle | |
parent | 9d25fd72553caff0008d35670544c0ab909c0224 (diff) | |
download | zsh-54bfcf5af18fbb841118e51b6c5325872770b52b.tar.gz zsh-54bfcf5af18fbb841118e51b6c5325872770b52b.tar.xz zsh-54bfcf5af18fbb841118e51b6c5325872770b52b.zip |
_zstyle vcs_info: Unbreak branchformat completion
The failure mode was: % zstyle ':vcs_info:*' branchformat "foobar%<TAB> _values:compvalues:10: no multi-letter values with empty separator allowed
Diffstat (limited to 'Completion/Zsh/Command/_zstyle')
-rw-r--r-- | Completion/Zsh/Command/_zstyle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Zsh/Command/_zstyle b/Completion/Zsh/Command/_zstyle index eb27117b2..c8e1c2be8 100644 --- a/Completion/Zsh/Command/_zstyle +++ b/Completion/Zsh/Command/_zstyle @@ -549,7 +549,7 @@ while (( $#state )); do compset -P '*%' _values -s '' 'format replacement' \ 'b[the current branch]' \ - 'r[current revision number]' \ + 'r[current revision number]' else _message -e formats 'vcs format' fi |