From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Markus Triska Newsgroups: gmane.emacs.help Subject: Re: go into methods shortcut key in emacs Date: Sun, 19 Nov 2006 23:21:05 +0100 Message-ID: <87d57jyt66.fsf@gmx.at> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1163976071 23729 80.91.229.2 (19 Nov 2006 22:41:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 19 Nov 2006 22:41:11 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Nov 19 23:41:05 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GlvLP-0001vy-Kn for geh-help-gnu-emacs@m.gmane.org; Sun, 19 Nov 2006 23:40:59 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GlvLO-0001XT-LO for geh-help-gnu-emacs@m.gmane.org; Sun, 19 Nov 2006 17:40:58 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsserver.news.garr.it!newscore.univie.ac.at!aconews-feed.univie.ac.at!aconews.univie.ac.at!not-for-mail Original-Newsgroups: gnu.emacs.help Cancel-Lock: sha1:932o9LXiXBrFyyoGVpeAICtgkXM= Original-Lines: 13 Original-NNTP-Posting-Host: v212-157.vps.tuwien.ac.at Original-X-Trace: 1163974829 tunews.univie.ac.at 12126 128.131.212.157 Original-X-Complaints-To: abuse@tuwien.ac.at Original-Xref: shelby.stanford.edu gnu.emacs.help:143212 Original-To: help-gnu-emacs@gnu.org 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:38829 Archived-At: Pedro Sa da Costa writes: > with this example, i would like to select the method callMethod() > inside test() method and, by pressing any key (for example, F3), i > would like to go into the method. How is this possible in emacs? It's explained in the chapter "Tags Tables" of the Emacs Info manual; briefly, you create a TAGS file ("etags" command) and in your buffer, do M-x visit-tags-table. With point at or behind ".callMethod", you go to the tag's definition via M-. (find-tag). All the best! Markus Triska