zsh-workers
 help / color / mirror / code / Atom feed
* PATCH: git completion - pass on --git-dir option
@ 2016-09-30  7:12 Oliver Kiddle
  2016-10-04 17:26 ` Daniel Shahaf
  0 siblings, 1 reply; 3+ messages in thread
From: Oliver Kiddle @ 2016-09-30  7:12 UTC (permalink / raw)
  To: Zsh workers

Various aspects of git completion don't work if the option --git-dir is
used. This solves that by putting the value in $GIT_DIR.

Oliver

diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index 2178b82..c89ab56 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -7484,7 +7484,7 @@ _git() {
         ;;
       (option-or-argument)
         curcontext=${curcontext%:*:*}:git-$words[1]:
-
+	(( $+opt_args[--git-dir] )) && local -x GIT_DIR=$opt_args[--git-dir]
 	if ! _call_function ret _git-$words[1]; then
 	  if zstyle -T :completion:$curcontext: use-fallback; then
 	    _default && ret=0


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-10-16  0:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-30  7:12 PATCH: git completion - pass on --git-dir option Oliver Kiddle
2016-10-04 17:26 ` Daniel Shahaf
2016-10-16  0:54   ` Daniel Shahaf

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

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).