From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Riley Newsgroups: gmane.emacs.help Subject: Re: simple requirement, so simple don't know how to search Date: Thu, 28 Jan 2010 14:22:25 +0100 Organization: aich tea tea pea dicky riley dot net Message-ID: References: <95734.2038.qm@web63001.mail.re1.yahoo.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1264685026 15469 80.91.229.12 (28 Jan 2010 13:23:46 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 28 Jan 2010 13:23:46 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jan 28 14:23:44 2010 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.69) (envelope-from ) id 1NaULW-00029p-BR for geh-help-gnu-emacs@m.gmane.org; Thu, 28 Jan 2010 14:23:42 +0100 Original-Received: from localhost ([127.0.0.1]:52563 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NaULV-00010f-Nu for geh-help-gnu-emacs@m.gmane.org; Thu, 28 Jan 2010 08:23:41 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NaUKm-0000qt-41 for help-gnu-emacs@gnu.org; Thu, 28 Jan 2010 08:22:56 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NaUKh-0000oi-Md for help-gnu-emacs@gnu.org; Thu, 28 Jan 2010 08:22:55 -0500 Original-Received: from [199.232.76.173] (port=46048 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NaUKh-0000od-FQ for help-gnu-emacs@gnu.org; Thu, 28 Jan 2010 08:22:51 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]:54474) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NaUKf-0007gg-Ox for help-gnu-emacs@gnu.org; Thu, 28 Jan 2010 08:22:50 -0500 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1NaUKd-0001QQ-Gu for help-gnu-emacs@gnu.org; Thu, 28 Jan 2010 14:22:47 +0100 Original-Received: from 85.183.18.158 ([85.183.18.158]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 28 Jan 2010 14:22:47 +0100 Original-Received: from rileyrgdev by 85.183.18.158 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 28 Jan 2010 14:22:47 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 29 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 85.183.18.158 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) 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:71544 Archived-At: Maindoor writes: > Hi, > I have a huge codebase and I I visit various files. There are certain points > which I would like "the feature I"m looking for" to remember when I press a key. > So that I can cycle through them back and forth. This is quite basic so I am hoping > this will already be there. Someone just tell me that this feature is there. > > Regards, > Maindoor. > You might like bm, I have : ,---- | (autoload 'bm-toggle "bm" "Toggle bookmark in current buffer." t) | (autoload 'bm-next "bm" "Goto bookmark." t) | (autoload 'bm-previous "bm" "Goto previous bookmark." t) | (global-set-key (kbd "") 'bm-next) | (global-set-key (kbd "") 'bm-previous) | (global-set-key (kbd "") 'bm-toggle) | (setq-default bm-buffer-persistence t) `---- http://www.nongnu.org/bm/ The cycle feature is great.