From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: jump next previous - tag bookmark or search Date: Sun, 28 May 2006 14:04:08 -0400 Organization: Bell Sympatico Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1148841635 26452 80.91.229.2 (28 May 2006 18:40:35 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 28 May 2006 18:40:35 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun May 28 20:40:32 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 1FkQBj-0005gy-S6 for geh-help-gnu-emacs@m.gmane.org; Sun, 28 May 2006 20:40:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FkQBj-0000EI-Dy for geh-help-gnu-emacs@m.gmane.org; Sun, 28 May 2006 14:40:31 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!headwall.stanford.edu!newsfeed.news2me.com!wn13feed!worldnet.att.net!207.35.177.252!nf3.bellglobal.com!nf1.bellglobal.com!nf2.bellglobal.com!news20.bellglobal.com.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:4dhfPfZtdtrqTHLfkrzQEk7jxqw= Original-Lines: 15 Original-NNTP-Posting-Host: 70.55.80.141 Original-X-Complaints-To: abuse@sympatico.ca Original-X-Trace: news20.bellglobal.com 1148839449 70.55.80.141 (Sun, 28 May 2006 14:04:09 EDT) Original-NNTP-Posting-Date: Sun, 28 May 2006 14:04:09 EDT Original-Xref: shelby.stanford.edu gnu.emacs.help:139643 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:35266 Archived-At: > My file of code is long and getting longer. So I would like to jump > either forward or backward to the next or previous section start, with > a single keystroke, such as F7 (previous) and F8 (next). Checkout outline-minor-mode. > I would be happy to comment each section start with a signifier-comment, > such as ;; ** whereas all other comments would start ;;; or ; The Elisp coding conventions say that ";;;" starts a section heading (which is recognized by outline-minor-mode). I.e. normal comments should use ";;" or ";" but not ";;;". Stefan