Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
git-svn completion doesn't work
- X-seq: zsh-workers 23906
- From: "Mikael Magnusson" <mikachu@xxxxxxxxx>
- To: zsh-workers <zsh-workers@xxxxxxxxxx>
- Subject: git-svn completion doesn't work
- Date: Fri, 5 Oct 2007 16:26:05 +0200
- 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=
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
git-svn <tab> says "no match for: `command'" instead of completing
commands, not sure why. git-svn fetch <tab> 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
Messages sorted by:
Reverse Date,
Date,
Thread,
Author