Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: subversion complete functions obsolete
- X-seq: zsh-users 24180
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: Cristiano De Michele <cristiano.demichele@xxxxxxxxxxx>
- Subject: Re: subversion complete functions obsolete
- Date: Sat, 24 Aug 2019 17:24:33 +0000
- Cc: zsh-users@xxxxxxx
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= daniel.shahaf.name; h=date:from:to:cc:subject:message-id :references:mime-version:content-type:content-transfer-encoding :in-reply-to; s=fm1; bh=mKP8SPLYKycTJHvlmt7RbR9cIiBR241sTvKuhXO6 iSQ=; b=ubBVlRQHn10Zxgjqp0s/MtlbFoYbgK0qelDFuZF2/NQ1EVNiWoJ+sASV fIL55jOoOZIgf8F4TQeLothmOiNYYrJJ5tFdPGy341GtGVI9mekDo6D6wS70Cd7z Vn+qt+aOlD7o0MRzX7cwuu1qEZ2PkhXmn/b7eclNGhuHYsx7k4mq6sX2L1BNhNuo wyGnvvXcxGCqS9xn7+pZc/dpQsNH2ds7CiIwHp2OIdLgrq95XzxhuHD6KDeL5tif NOvR26KOey5ry4By8H9Z0N29jLtQu0uSjiNp+Rt6xJhdqiecoK6WS9QLaSBqcijB sg5FrSftPaeDHejOPaa7oxL99+9NGQ==
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm3; bh=mKP8SPLYKycTJHvlmt7RbR9cIiBR241sTvKuhXO6i SQ=; b=zENaUtzFos35g3x/2HgttyxZh/ORjhD10/1ISf5yRXQ5tjQiquB6U+UwC UKDnLYiO6SElJsbLZhee+UK0o5bhWGNpQc5ngOm6qf+1uvSWUrNDC9ofubVvNeeR aMU2vfycn6troIiMAjErOivzeJesOJIcLECBqoQCcXXPfH7i5BpXZrJ+vgv3uqH2 tFj6gymhWuXcdl8CSuqsLw8dpaFFHffEvx2LyHTSVTjUqTAUSSQ88k25JnooemJ8 GdCY+GjEsPJVBVq9z3Nhh6WGoqhEr2EwVAKHUtgNc3FkfHDxDxobAJeWLDwtExw0 eaKBL3h/9Iq2SDxylvIrV90qXaF6A==
- In-reply-to: <5521481D-C84A-449A-BBF7-0C429868247B@uniroma1.it>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- List-unsubscribe: <mailto:zsh-users-unsubscribe@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <5521481D-C84A-449A-BBF7-0C429868247B@uniroma1.it>
Cristiano De Michele wrote on Fri, Aug 23, 2019 at 18:38:07 +0200:
> the subversion functions for tab completion provided by current stable
> version of zsh (5.7.1) are obsolete and they do not work as expected
> (e.g. 'svn diff <tab>’ does not provide all files under revision
> control),
I can't reproduce this. What files does it not complete?
> simplifying the logic of tab completion, in that it completes all
> files and dirs in the current folder (i.e. not only the ones under
> revision control),
Note that completion should also complete files that are missing (status
«!»), scheduled for deletion (status «D»), and in the case of «svn up»,
files that are cropped (after an earlier «svn up --set-depth=exclude»).
Does your patch regress either of these cases?
(If multiple things are broken, a patch needs to fix only one of them to
be acceptable — provided that it doesn't regress anything else. If it
does, it will need to be considered on a case-by-case basis.)
> since the latest svn versions store all files in the folder
> .svn of the root directory of the repository.
Context for the list:
Subversion through 1.6.x put .svn dirs in each and every subdirectory,
like CVS did. Subversion ≥1.7 put one .svn dir in the working copy
root, like git and hg do. Subversion 1.7.0 was released in Oct 2011.
Subversion 1.6.x EOL'd in June 2013. At this point I see little value
in continuing to support the ≤1.6 working copy format in zsh. If anyone
disagrees, speak up.
> Hence, I patched a bit the original file making svn completion work
> again but
Thanks for basing your work on HEAD of master. Please send patches
as unified diffs, not as full files. That's easier to read and review.
Non parlo italiano. If the comment at the top of the file is pertinent,
please translate it to English.
Why did you delete _svn_conflicts()? The pattern there is still valid.
I'm not fond of deleting _svn_deletedfiles(), _svn_controlled(), and
_svn_status(). If there's no way to fix them, I'd prefer to keep them
as functions that return true, so it would be easier to restore the
functionality once someone figures out an implementation.
_svn_status() could probably be salvaged just by making it check the
mtime of wc.db and wc.db-journal instead (more or less; IIRC SQLite has
some pragmas/options affecting naming of auxiliary files).
_svn_deletedfiles(), by using «svn st | grep '^D' | cut -c8-».
_svn_controlled(), by using «svn info -R» or «svn st --xml». (It would
be wrong to use «svn ls» there: that wouldn't DTRT on mixed-revision
and/or switched working copies.)
And looking further into it, _svn_deletedfiles() and _svn_controlled()
can both be computed by a _single_ command: «svn info -R
--show-item=schedule».
Thanks for the patch!
Cheers,
Daniel
Messages sorted by:
Reverse Date,
Date,
Thread,
Author