diff options
author | Mikael Magnusson <mikachu@gmail.com> | 2011-05-12 16:01:19 +0000 |
---|---|---|
committer | Mikael Magnusson <mikachu@gmail.com> | 2011-05-12 16:01:19 +0000 |
commit | 9a5fcb3c31e145686d46a100b114cdfc92d0c87e (patch) | |
tree | 64a8b898c4fc063ce255e125d4b4de4fb30acd64 /Completion/Unix/Command | |
parent | 5ef22d41c4fa345b77de0d1d6dfb3d4a9b01ee15 (diff) | |
download | zsh-9a5fcb3c31e145686d46a100b114cdfc92d0c87e.tar.gz zsh-9a5fcb3c31e145686d46a100b114cdfc92d0c87e.tar.xz zsh-9a5fcb3c31e145686d46a100b114cdfc92d0c87e.zip |
Nikolai Weibull: 29124: Fix -l option in _git.
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_git | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index f58550e9a..ccff03fed 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -1509,12 +1509,12 @@ _git-tag () { '*:: :__git_ignore_line_inside_arguments __git_tags' \ - listing \ '-n+[limit line output of annotation]: :__git_guard_number "limit"' \ - '-l[list tags matching pattern]:pattern' \ + '-l[list tags matching pattern]' \ '--contains=[only list tags which contain the specified commit]: :__git_commits' \ + '::pattern' \ - verification \ '-v[verifies gpg signutare of tags]' \ - '*:: :__git_ignore_line_inside_arguments __git_tags' \ - && ret=0 + '*:: :__git_ignore_line_inside_arguments __git_tags' && ret=0 } # Ancillary Commands (Manipulators) |