From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17100 invoked from network); 5 Oct 2007 14:26:22 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.3 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 5 Oct 2007 14:26:22 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 34398 invoked from network); 5 Oct 2007 14:26:15 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 5 Oct 2007 14:26:15 -0000 Received: (qmail 8376 invoked by alias); 5 Oct 2007 14:26:13 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 23906 Received: (qmail 8360 invoked from network); 5 Oct 2007 14:26:13 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 5 Oct 2007 14:26:13 -0000 Received: (qmail 34155 invoked from network); 5 Oct 2007 14:26:13 -0000 Received: from an-out-0708.google.com (209.85.132.248) by a.mx.sunsite.dk with SMTP; 5 Oct 2007 14:26:08 -0000 Received: by an-out-0708.google.com with SMTP id c14so99329anc for ; Fri, 05 Oct 2007 07:26:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=aKOrYU3rP512pKxFTMMB0wMwj/IzQDIDbEXClEKgps8=; b=IkXknq9uYCHNgdZ3sBpOP+WPZjcitHZJDBF5i2rUMvNPG6Sk/YnLZDsGI0tdUQPuNlG1kZfofuxl3x2Hp3T5tB4rBC+vyzCqFl+kQcxiIj59bvd0fxf8xVdEhcvASnW+NSqfl5V/OBdxICOWWa+pXz+SuslDkJVAN2NVCsxcmtM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=GhBeKM8VS4R6UC12eRimqk5R/sWP6XTtLZ1n9zV/dPtJOZK8y7Za29kxhN5bYotEONDAugasVmSjwxmo8/i4ftHLEEaq7bqR/Qj5MpkVnVB4mioRNt3CAuhxoIS4lgBK7Pdks/hXlGk5RRhIbd5TMqDRr2eZEzQxOpvG69EpE7E= Received: by 10.142.83.4 with SMTP id g4mr1537803wfb.1191594365472; Fri, 05 Oct 2007 07:26:05 -0700 (PDT) Received: by 10.142.86.21 with HTTP; Fri, 5 Oct 2007 07:26:05 -0700 (PDT) Message-ID: <237967ef0710050726v227ed8e3q3a92e68324c19bec@mail.gmail.com> Date: Fri, 5 Oct 2007 16:26:05 +0200 From: "Mikael Magnusson" To: zsh-workers Subject: git-svn completion doesn't work MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline git-svn says "no match for: `command'" instead of completing commands, not sure why. git-svn fetch said _git-svn:154: command not found: (-i --id)-i[set GIT_SVN_ID]:GIT_SVN_ID which I could fix with @@ -2472,7 +2472,7 @@ _git-svn () { '(-h -H --help)'{-h,-H,--help}'[display usage information]' \ '(-V --version)'{-V,--version}'[display version information]' \ '--minimize-connections[undocumented]' \ - '(-R --svn-remote --remote)'{-R,--svn-remote,--remote}'[svn remote to use]:svn remote:__git_svn-remotes' + '(-R --svn-remote --remote)'{-R,--svn-remote,--remote}'[svn remote to use]:svn remote:__git_svn-remotes' \ '(-i --id)'{-i,--id}'[set GIT_SVN_ID]:GIT_SVN_ID' $arguments && ret=0 however, then it moved on to saying _git-svn:155: command not found: --username=[username to use for SVN transport]:username:_users and I have no idea why it does that. I also believe this change should be done but not sure: @@ -2357,8 +2357,8 @@ _git-svn () { if [[ $line[1] == (fetch|clone|dcommit|set-tree|rebase|log) ]]; then arguments+=( - '( --authors-file)'$author_conversion_file_arg - '(-A )'$long_author_conversion_file_arg) + '( --authors-file)'$long_author_conversion_file_arg + '(-A )'$author_conversion_file_arg) fi # TODO: --repack-flags can be improved by actually completing the legal -- Mikael Magnusson