* [PATCH] contrib/completion: fix zsh completion regression
@ 2023-04-27 5:27 Dimi via GitGitGadget
0 siblings, 0 replies; only message in thread
From: Dimi via GitGitGadget @ 2023-04-27 5:27 UTC (permalink / raw)
To: git; +Cc: Dimi, Dimitar Roustchev
From: Dimitar Roustchev <dimitar+github@pagerduty.com>
From: Felipe Contreras <felipe.contreras@gmail.com> @ 2021-08-16 9:19 UTC
[1]
Despite 0b18023 addressing a regression from 59d85a2, the issue
described in [1] still persists as described:
compdef _git ga=git-add
ga <tab>
ga __git_find_on_cmdline:[:16: unknown condition: -lt
The suggested fix to set __git_cmd_idx for the _git function wrapper
worked for me on:
- zsh v5.8.1
- git v2.40.1
Signed-off-by: Dimitar Roustchev <dimitar@pagerduty.com>
[1] https://lore.kernel.org/all/20210816091935.548555-1-felipe.contreras@gmail.com/
---
contrib/completion: fix zsh completion regression
Despite 0b18023 addressing a regression from 59d85a2, the issue
described in
https://lore.kernel.org/all/20210816091935.548555-1-felipe.contreras@gmail.com/T/
still persists as described:
compdef _git ga=git-add ga ga __git_find_on_cmdline:[:16: unknown
condition: -lt
The suggested fix to set __git_cmd_idx for the _git function wrapper
worked for me on:
* zsh v5.8.1
* git v2.40.1
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-1499%2Fdroustchev-pd%2Ffix-__git_cmd_idx-regression-zsh-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-1499/droustchev-pd/fix-__git_cmd_idx-regression-zsh-v1
Pull-Request: https://github.com/git/git/pull/1499
contrib/completion/git-completion.zsh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/completion/git-completion.zsh b/contrib/completion/git-completion.zsh
index cac6f618817..a1f2d278179 100644
--- a/contrib/completion/git-completion.zsh
+++ b/contrib/completion/git-completion.zsh
@@ -271,7 +271,7 @@ __git_zsh_main ()
_git ()
{
local _ret=1
- local cur cword prev
+ local cur cword prev __git_cmd_idx=0
cur=${words[CURRENT]}
prev=${words[CURRENT-1]}
base-commit: 2807bd2c10606e590886543afe4e4f208dddd489
--
gitgitgadget
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2023-04-27 5:27 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-27 5:27 [PATCH] contrib/completion: fix zsh completion regression Dimi via GitGitGadget
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).