From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2032 invoked by alias); 8 Dec 2009 10:47:30 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 27482 Received: (qmail 27707 invoked from network); 8 Dec 2009 10:47:27 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.218.210 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:mail-followup-to:references:mime-version:content-type :content-disposition:content-transfer-encoding:in-reply-to :user-agent; bh=4ccHqBJPYJelUWciO/A4X21S64WUAi3pydMqVmehEC0=; b=bAikk3Z4KDVyk749Ggo30fGGhkydjiiS3pqNkNRrlt+Pj2N5YMmymNZ/5nx2s7RUC0 uIiTg+OEvNddBU/QffGWMKmEq8g85rL0iUXlE7YlsvX6MN9Qgc0mT8PoDBEtIhkRWjM9 nqn0g+rMfk/F76DIRs7r5DO8fTH93zH2xhOzE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition :content-transfer-encoding:in-reply-to:user-agent; b=q5RPzG2Od6WgHOZV5APwK6+BUpDhDXhcNvKFPHrGT0VVtcrQSXALUAYq/7ROw/XGs2 LSyyIvGC9m2s2NIk1nT6YRzEvqjmbKxziU1A0wLFfQhEq0ypAcgsRyAEnndPHXYbh4lO 7NmhXNLwL3uBoN1RZIeE3Fdnmyu880QXdgyew= Date: Tue, 8 Dec 2009 11:48:39 +0100 From: =?utf-8?B?xaB0xJtww6FuIE7Em21lYw==?= To: "Alexey I. Froloff" Cc: zsh-workers@zsh.org Subject: Re: [PATCH] _git: offer files relative to current directory Message-ID: <20091208104839.GC21684@headley> Mail-Followup-To: "Alexey I. Froloff" , zsh-workers@zsh.org References: <20091205174551.GF3344@altlinux.org> <1260136353-20093-1-git-send-email-raorn@altlinux.org> <20091207224056.GD9335@altlinux.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20091207224056.GD9335@altlinux.org> User-Agent: Mutt/1.5.20 (2009-08-27) On Tue, Dec 08, 2009 at 01:40:57AM +0300, Alexey I. Froloff wrote: > On Mon, Dec 07, 2009 at 12:52:33AM +0300, Alexey I. Froloff wrote: > > When offering repository files (cached, deleted, changed, etc), make > > sure that paths are relative to current directory, as git expects. > Any comments? > > -- > Regards, > Sir Raorn. Sorry, I have some other work currently. Just now I tested your patch, and it doesn't work for me: In a repository where `git status' reports the following changed files: # modified: doc/tags # modified: filetype.vim # modified: ftplugin/vim.vim # modified: ftplugin/zsh.vim # modified: indent/sh.vim # modified: plugin/utl.vim # modified: snippets/_.snippets # modified: syntax/elisp.vim # modified: syntax/sh.vim # modified: syntax/vim.vim `git commit ' only suggests: doc filetype.vim ftplugin indent plugin snippets syntax which is obviously wrong; so my current solution is still functionally better :-/ Regards, Štěpán