From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tom Tromey Newsgroups: gmane.emacs.help Subject: Re: C++ browser for overloaded methods Date: Wed, 06 Jun 2007 08:54:58 -0600 Message-ID: References: <1181131356.192551.62090@g4g2000hsf.googlegroups.com> Reply-To: tromey@redhat.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1181143078 19452 80.91.229.12 (6 Jun 2007 15:17:58 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 6 Jun 2007 15:17:58 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jun 06 17:17:57 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HvxGm-0006x3-1K for geh-help-gnu-emacs@m.gmane.org; Wed, 06 Jun 2007 17:17:56 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HvxGl-0001al-89 for geh-help-gnu-emacs@m.gmane.org; Wed, 06 Jun 2007 11:17:55 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HvxGW-0001ag-7i for help-gnu-emacs@gnu.org; Wed, 06 Jun 2007 11:17:40 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HvxGU-0001ZB-47 for help-gnu-emacs@gnu.org; Wed, 06 Jun 2007 11:17:38 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HvxGT-0001Z0-OS for help-gnu-emacs@gnu.org; Wed, 06 Jun 2007 11:17:37 -0400 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1HvxGT-0002FP-Ax for help-gnu-emacs@gnu.org; Wed, 06 Jun 2007 11:17:37 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1HvxFz-00069t-AN for help-gnu-emacs@gnu.org; Wed, 06 Jun 2007 17:17:08 +0200 Original-Received: from 207.189.196.98 ([207.189.196.98]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 Jun 2007 17:17:07 +0200 Original-Received: from tromey by 207.189.196.98 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 Jun 2007 17:17:07 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 24 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 207.189.196.98 X-Attribution: Tom User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.990 (gnu/linux) Cancel-Lock: sha1:xn/auijFDO4O5GuWEr+XxiFs+5o= X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:44712 Archived-At: >>>>> "Abanowicz" == Abanowicz Tomasz writes: Abanowicz> I would like to jump to the Bambi.show(3) function with one command. Abanowicz> I place the cursor on Bambi.(3) and perform such a command. Abanowicz> Do you know any code browsers that can do that ? Abanowicz> I tried etags and ebrowse but both of them jump to Human::show(void) Abanowicz> function. Abanowicz> ctags from vim gives the list of all show(...) functions Abanowicz> and allows me to manually choose the proper one. It is Abanowicz> much better than blindly jumping to the Human::show(...). With tags you can use M-u M-. to jump to the next one. You can also use completion for the tag. Abanowicz> Does emacs allow more intelligent C++ browsing that solves Abanowicz> the above problem ? What is the name of such a tools ? You might try CEDET. I don't know whether or not it can do this but it is probably your best bet. Tom