From mboxrd@z Thu Jan 1 00:00:00 1970 From: bdowning@lavos.net (Brian Downing) Subject: Re: UI and git-completion.sh Date: Tue, 23 Oct 2007 19:55:49 -0500 Message-ID: <20071024005549.GC24924@lavos.net> References: <20071023234617.45a4fc64@paolo-desktop> <471E6EF0.2060403@midwinter.com> <86ve8x9z1f.fsf@blue.stonehenge.com> <86prz59y9s.fsf@blue.stonehenge.com> <471E91C9.3000004@midwinter.com> <86d4v59wvt.fsf@blue.stonehenge.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Steven Grimm , Matthieu Moy , Paolo Ciarrocchi , git@vger.kernel.org To: "Randal L. Schwartz" X-From: git-owner@vger.kernel.org Wed Oct 24 03:06:15 2007 Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1IkUhF-0002z4-BM for gcvg-git-2@gmane.org; Wed, 24 Oct 2007 03:06:09 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752820AbXJXBF4 (ORCPT ); Tue, 23 Oct 2007 21:05:56 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752807AbXJXBFz (ORCPT ); Tue, 23 Oct 2007 21:05:55 -0400 Received: from mxsf03.insightbb.com ([74.128.0.64]:55892 "EHLO mxsf03.insightbb.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752770AbXJXBFz (ORCPT ); Tue, 23 Oct 2007 21:05:55 -0400 X-Greylist: delayed 592 seconds by postgrey-1.27 at vger.kernel.org; Tue, 23 Oct 2007 21:05:55 EDT X-IronPort-AV: E=Sophos;i="4.21,320,1188792000"; d="scan'208";a="79833010" Received: from unknown (HELO asav01.insightbb.com) ([172.31.249.124]) by mxsf03.insightbb.com with ESMTP; 23 Oct 2007 20:56:01 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Aq4HANA0HkdKhvkY/2dsb2JhbACBWg X-IronPort-AV: E=Sophos;i="4.21,320,1188792000"; d="scan'208";a="88493020" Received: from 74-134-249-24.dhcp.insightbb.com (HELO mail.lavos.net) ([74.134.249.24]) by asav01.insightbb.com with ESMTP; 23 Oct 2007 20:56:00 -0400 Received: by mail.lavos.net (Postfix, from userid 1000) id B00DF309F21; Tue, 23 Oct 2007 19:55:49 -0500 (CDT) Content-Disposition: inline In-Reply-To: <86d4v59wvt.fsf@blue.stonehenge.com> User-Agent: Mutt/1.5.9i Sender: git-owner@vger.kernel.org Precedence: bulk X-Mailing-List: git@vger.kernel.org Archived-At: On Tue, Oct 23, 2007 at 05:31:02PM -0700, Randal L. Schwartz wrote: > Yes, so what is the process of adding the git zsh completion to any > relatively stable version of zsh? Someone here must know. I dunno the "right" way to do it, but I had this in my .zshrc file that I presumably cargo-culted from somewhere: fpath=( $HOME/.zsh/compfuncs $fpath ) So in addition to that, doing: wget -O ~/.zsh/compfuncs/_git 'http://zsh.cvs.sourceforge.net/*checkout*/zsh/zsh/Completion/Unix/Command/_git' might get you something. I guess if your zsh is too old it might be incompatible with the completion script, though... -bcd