From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "B. T. Raven" Newsgroups: gmane.emacs.help Subject: Re: rookie question How to jump to line# Date: Mon, 06 Mar 2006 17:45:00 GMT Organization: EarthLink Inc. -- http://www.EarthLink.net Message-ID: References: <1141653952.450687.309980@j33g2000cwa.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1141687945 13744 80.91.229.2 (6 Mar 2006 23:32:25 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 6 Mar 2006 23:32:25 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Mar 07 00:32:25 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 1FGPBf-0002Np-W1 for geh-help-gnu-emacs@m.gmane.org; Tue, 07 Mar 2006 00:32:24 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FGPBf-0003bH-6T for geh-help-gnu-emacs@m.gmane.org; Mon, 06 Mar 2006 18:32:23 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!elnk-nf2-pas!newsfeed.earthlink.net!stamper.news.pas.earthlink.net!stamper.news.atl.earthlink.net!newsread3.news.atl.earthlink.net.POSTED!0847253b!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 23 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Original-NNTP-Posting-Host: 4.159.38.245 Original-X-Complaints-To: abuse@earthlink.net Original-X-Trace: newsread3.news.atl.earthlink.net 1141667100 4.159.38.245 (Mon, 06 Mar 2006 09:45:00 PST) Original-NNTP-Posting-Date: Mon, 06 Mar 2006 09:45:00 PST Original-Xref: shelby.stanford.edu gnu.emacs.help:137977 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:33604 Archived-At: "billy" wrote in message news:1141653952.450687.309980@j33g2000cwa.googlegroups.com... > How do I jump to a line #? > How do I tell emacs to display line #? > In version 22 it's M-g g In earlier versions you could put something like one of these in .emacs: (global-set-key [(super g)] 'goto-line) or (global-set-key [(hyper g)] 'goto-line) or (defalias 'gtl 'goto-line) and then then type M-x gtl (Alt-x gtl) Ed