From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Pedro Sa da Costa Newsgroups: gmane.emacs.help Subject: go into methods shortcut key in emacs Date: Sun, 19 Nov 2006 21:59:52 +0000 Message-ID: <4560D3D8.3060602@mail.telepac.pt> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1163973621 17387 80.91.229.2 (19 Nov 2006 22:00:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 19 Nov 2006 22:00:21 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Nov 19 23:00:15 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 1Gluhp-0001C8-Px for geh-help-gnu-emacs@m.gmane.org; Sun, 19 Nov 2006 23:00:06 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gluhp-0004a1-G7 for geh-help-gnu-emacs@m.gmane.org; Sun, 19 Nov 2006 17:00:05 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Gluhe-0004Xz-OV for help-gnu-emacs@gnu.org; Sun, 19 Nov 2006 16:59:54 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Gluhd-0004VR-Oi for help-gnu-emacs@gnu.org; Sun, 19 Nov 2006 16:59:54 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gluhd-0004VI-K2 for help-gnu-emacs@gnu.org; Sun, 19 Nov 2006 16:59:53 -0500 Original-Received: from [212.55.154.25] (helo=sapo.pt) by monty-python.gnu.org with smtp (Exim 4.52) id 1Gluhd-0006bj-4y for help-gnu-emacs@gnu.org; Sun, 19 Nov 2006 16:59:53 -0500 Original-Received: (qmail 23878 invoked from network); 19 Nov 2006 21:59:48 -0000 Original-Received: from unknown (HELO sapo.pt) (10.134.35.157) by relay6 with SMTP; 19 Nov 2006 21:59:48 -0000 Original-Received: (qmail 24602 invoked from network); 19 Nov 2006 21:59:47 -0000 X-AntiVirus: PTMail-AV 0.3-0.88.4 X-Virus-Status: Clean (0.01223 seconds) Original-Received: from unknown (HELO [192.168.1.101]) (op132650b@[85.241.71.8]) (envelope-sender ) by mta7 (qmail-ldap-1.03) with SMTP for ; 19 Nov 2006 21:59:47 -0000 User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050716) X-Accept-Language: en-us, en 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:38827 Archived-At: Hi, 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? public void test() { obj.callMethod() <-- I would like to select callMethod() and, by pressing f3, i go into this method. } public void callMethod() { System.out.println("Hello world!"); } Is this possible? Thanks, Pedro