summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2016-01-20 07:47:28 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2016-01-23 23:50:04 +0000
commit295133d741985565befd68330fd728710d9db5cc (patch)
tree346fbb2a2a8c0de076215da532672c6b3ff83e11
parent1aec003155e8ccd8e0e3b9a6bd8c9fdb141d5c81 (diff)
downloadzsh-295133d741985565befd68330fd728710d9db5cc.tar.gz
zsh-295133d741985565befd68330fd728710d9db5cc.zip
37703: Completion: git: Also complete sendmail commands for send-email's configuration. (after 37666)
-rw-r--r--ChangeLog6
-rw-r--r--Completion/Unix/Command/_git4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 673fd9f26..7c6623e09 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2016-01-23 Daniel Shahaf <d.s@daniel.shahaf.name>
+
+ * 37703: Completion/Unix/Command/_git: Completion: git: Also
+ complete sendmail commands for send-email's configuration. (after
+ 37666)
+
2016-01-21 Peter Stephenson <p.stephenson@samsung.com>
* 37722: Src/builtin.c, Test/C02cond.zts: test builtin should
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index 5f137d009..65916f01e 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -2268,7 +2268,7 @@ _git-config () {
sendemail.suppressfrom:'add From\: address to the Cc\: list::->bool:false'
sendemail.to:'value of To\: header::_email_addresses'
sendemail.smtpdomain:'FQDN to use for HELO/EHLO commands to SMTP server:smtp domain:_domains'
- sendemail.smtpserver:'SMTP server to connect to:smtp host:_hosts'
+ sendemail.smtpserver:'SMTP server to connect to:smtp host: __git_sendmail_smtpserver_values'
sendemail.smtpserveroption:'specifies the outgoing SMTP server option to use:SMTP server option:->string'
sendemail.smtpserverport:'port to connect to SMTP server on:smtp port:_ports'
sendemail.smtpsslcertpath:'path to ca-certificates (directory or file):ca certificates path:_files'
@@ -2293,7 +2293,7 @@ _git-config () {
'sendemail.*.suppressfrom:rules for suppressing From\:::->sendemail.suppressfrom'
'sendemail.*.to:value of To\: header::_email_addresses'
'sendemail.*.smtpdomain:FQDN to use for HELO/EHLO commands to SMTP server:smtp domain:_domains'
- 'sendemail.*.smtpserver:SMTP server to connect to:smtp host:_hosts'
+ 'sendemail.*.smtpserver:SMTP server to connect to:smtp host: __git_sendmail_smtpserver_values'
'sendemail.*.smtpserveroption:specifies the outgoing SMTP server option to use:SMTP server option:->string'
'sendemail.*.smtpserverport:port to connect to SMTP server on:smtp port:_ports'
'sendemail.*.smtpuser:user to use for SMTP-AUTH:smtp user:_users'