diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-11-24 07:17:33 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-11-29 06:41:21 +0000 |
commit | a74294edbeb1c0cf9b48e6414559f57ad76dc017 (patch) | |
tree | f0191bc046ae04eaebcef15c130e36b837237ace /Completion | |
parent | 1955cceec79107b6571646b695d334df8e4a6cd8 (diff) | |
download | zsh-a74294edbeb1c0cf9b48e6414559f57ad76dc017.tar.gz zsh-a74294edbeb1c0cf9b48e6414559f57ad76dc017.tar.xz zsh-a74294edbeb1c0cf9b48e6414559f57ad76dc017.zip |
unposted: _git-config: Fix user.email completion to complete only bare email addresses.
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 8fdca2898..283c50cc0 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -2613,7 +2613,7 @@ __git_config_option-or-value () { uploadarchive.allowUnreachable:'allow git-upload-archive to accept an archive requests that ask for unreachable objects::->bool:false' 'url.*.insteadOf:string to start URLs with:prefix:->string' 'url.*.pushInsteadOf:string to start URLs to push to with:prefix:->string' - user.email:'email address used for commits::_email_addresses' + user.email:'email address used for commits::_email_addresses -c' user.name:'full name used for commits:name:->string' user.signingkey:'default GPG key to use when creating signed tags::__git_gpg_secret_keys' web.browser:'web browser to use::__git_browsers') |