Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 1/4] _git: Remove hanging whitespaces
- X-seq: zsh-workers 46139
- From: Miroslav Koškár <mk@xxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH 1/4] _git: Remove hanging whitespaces
- Date: Sat, 27 Jun 2020 08:12:15 +0200
- Arc-authentication-results: i=1; mx.zohomail.com; dkim=pass header.i=mkoskar.com; spf=pass smtp.mailfrom=mk@xxxxxxxxxxx; dmarc=pass header.from=<mk@xxxxxxxxxxx> header.from=<mk@xxxxxxxxxxx>
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1593238397; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To; bh=8kD7ZLjmoAtp/9BlvIKCqlSENr3Mof1hQ+7MAKYqJnI=; b=hjE3Cq3Of/W2zs5ssEADXyhdKxV29AuiKn3DiMx/LJ4WRPvyfiEsCQKnTuqWkjnaD6/xjTCZP8QciQR16BMHLRXDDjwohX4vCZXPNTcwScLlcnmbgbr8i/cAlty3HIkfPeT8l7J5wPpJU/bHUcammUSywkqajTW/vtHAcctQWis=
- Arc-seal: i=1; a=rsa-sha256; t=1593238397; cv=none; d=zohomail.com; s=zohoarc; b=BlUpz5zFHmBnFwpcUkf4B5Yme0c46PsRdEC4UhF10QxXhmefWMeKskWVXk5Rb5B5qAqsTpax3xr8eoiM2QxNJ8LZxwhxVHPE3Pg7iBF+aEG04hR1VcYoEwM/7m8bHSh+3BdoBw+qvRhiu5nOHbT5QHyVJOKSti3CFbydYAdYDB8=
- Cc: d.s@xxxxxxxxxxxxxxxxxx
- In-reply-to: <cover.1593236365.git.mk@mkoskar.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <cover.1593236365.git.mk@mkoskar.com>
- Sender: zsh-workers@xxxxxxx
---
Completion/Unix/Command/_git | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index 9eeff6a..fc754e7 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -2346,7 +2346,7 @@ __git_config_value () {
# Helper to _git-config(). May be called by other functions, too, provided
# that The caller has set $line, $state, and $opt_args as _git-config() would
# set them:
-#
+#
# - set $line[1] to the option name being completed (even if completing an
# option value).
# - set $opt_args to git-config(1) options, as set by _arguments in
@@ -2916,7 +2916,7 @@ __git_config_option-or-value () {
for key in $git_present_options ; do
if (( ${+git_options[(r)(#i)${(b)key}:*]} )); then
# $key is already in git_options
- continue
+ continue
elif (( ${+sections_that_permit_arbitrary_subsection_names[(r)${(b)key%%.*}]} )); then
if [[ $key == *.*.* ]]; then
# If $key isn't an instance of a known foo.*.bar:baz $git_options entry...
--
2.27.0
Messages sorted by:
Reverse Date,
Date,
Thread,
Author