From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31181 invoked by alias); 4 Jan 2015 03:38:36 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 31149 invoked by uid 89); 4 Jan 2015 03:38:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: mtaout28.012.net.il Received: from mtaout28.012.net.il (HELO mtaout28.012.net.il) (80.179.55.184) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 04 Jan 2015 03:38:23 +0000 Received: from conversion-daemon.mtaout28.012.net.il by mtaout28.012.net.il (HyperSendmail v2007.08) id <0NHM00100V220T00@mtaout28.012.net.il> for gdb-patches@sourceware.org; Sun, 04 Jan 2015 05:36:15 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout28.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NHM00JL6VCFZF60@mtaout28.012.net.il>; Sun, 04 Jan 2015 05:36:15 +0200 (IST) Date: Sun, 04 Jan 2015 03:38:00 -0000 From: Eli Zaretskii Subject: Re: [PATCH] Add aliases "i ty" and "i so". In-reply-to: To: Doug Evans Cc: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <838uhj9pw1.fsf@gnu.org> References: X-IsSubscribed: yes X-SW-Source: 2015-01/txt/msg00030.txt.bz2 > From: Doug Evans > Date: Sat, 03 Jan 2015 13:55:41 -0800 > > I'd gotten tired enough of fully typing out "info types" and "info source" > (which otherwise collide with "info type-printers" and "info sources") > that I have this in my .gdbinit: > > alias i ty = info types > alias i so = info source > > Does anyone want a more generally available solution? > Another way to go is to put the "alias" solution in a more public > place (the faq or some such). > I don't have a strong preference, just in a "spring cleaning" kind of > mood. :-) > > I thought of maybe "i t" for "info types" but I can't think of a reason > to prefer "t" for "types" or "threads", so I'm going with "ty" which > I think is pretty safe. > > "s" is taken ("info stack", which is fine by me), so I went with "so" > for "source". OK for the documentation parts. Thanks.