From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Shawn O. Pearce" Subject: Re: [PATCH 5/8] bash: Classify more commends out of completion. Date: Sun, 4 Feb 2007 21:37:26 -0500 Message-ID: <20070205023726.GA12917@spearce.org> References: <20070204073830.GE17603@spearce.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: git@vger.kernel.org To: Jakub Narebski X-From: git-owner@vger.kernel.org Mon Feb 05 03:37:39 2007 Return-path: Envelope-to: gcvg-git@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1HDtjc-0008Dk-Lm for gcvg-git@gmane.org; Mon, 05 Feb 2007 03:37:37 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752665AbXBEChb (ORCPT ); Sun, 4 Feb 2007 21:37:31 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752667AbXBEChb (ORCPT ); Sun, 4 Feb 2007 21:37:31 -0500 Received: from corvette.plexpod.net ([64.38.20.226]:57605 "EHLO corvette.plexpod.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752665AbXBECha (ORCPT ); Sun, 4 Feb 2007 21:37:30 -0500 Received: from cpe-74-70-48-173.nycap.res.rr.com ([74.70.48.173] helo=asimov.home.spearce.org) by corvette.plexpod.net with esmtpa (Exim 4.63) (envelope-from ) id 1HDtjJ-0001Ez-Fr; Sun, 04 Feb 2007 21:37:17 -0500 Received: by asimov.home.spearce.org (Postfix, from userid 1000) id 1846A20FBAE; Sun, 4 Feb 2007 21:37:27 -0500 (EST) Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - corvette.plexpod.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spearce.org X-Source: X-Source-Args: X-Source-Dir: Sender: git-owner@vger.kernel.org Precedence: bulk X-Mailing-List: git@vger.kernel.org Archived-At: Jakub Narebski wrote: > Shawn O. Pearce wrote: > > [cut] > > Sidenote: do you have git-config and git-init as commands to use? Yes. init and config are not in that table, which means they will be offered as possible completions. The table defaults to include every command, I filter out stuff which people aren't expected to be running (frequently) from an interactive shell. Err on the side of caution... But not only is config in the table, we support completion on lots of the arguments, e.g. `git config branch.ma.re` (for branch.master.remote). -- Shawn.