[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: simple requirement, so simple don't know how to search
From: |
Richard Riley |
Subject: |
Re: simple requirement, so simple don't know how to search |
Date: |
Thu, 28 Jan 2010 14:22:25 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) |
Maindoor <sanjeevfiles@yahoo.com> 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 "<f8>") 'bm-next)
| (global-set-key (kbd "<M-f8>") 'bm-previous)
| (global-set-key (kbd "<C-f8>") 'bm-toggle)
| (setq-default bm-buffer-persistence t)
`----
http://www.nongnu.org/bm/
The cycle feature is great.
- simple requirement, so simple don't know how to search, Maindoor, 2010/01/28
- Re: simple requirement, so simple don't know how to search, Mario Domenech Goulart, 2010/01/28
- Re: simple requirement, so simple don't know how to search,
Richard Riley <=
- Re: simple requirement, so simple don't know how to search, Tassilo Horn, 2010/01/28
- Re: simple requirement, so simple don't know how to search, Richard Riley, 2010/01/28
- Re: simple requirement, so simple don't know how to search, Tassilo Horn, 2010/01/29
- Re: simple requirement, so simple don't know how to search, tomas, 2010/01/30
- Re: simple requirement, so simple don't know how to search, Thierry Volpiatto, 2010/01/29