|
From: | Hadron Quark |
Subject: | Re: How to switch to the recent available buffer easily |
Date: | Wed, 27 Dec 2006 19:35:25 +0100 |
User-agent: | Pan 0.14.2.91 |
Ronald <followait@163.com> writes: > I think ``C-x b ret" is not easy enough. > I find it is a common action for me recently. > Is there any good method? I use this: ;; Cycle buffers ##################################### (autoload 'cyclebuffer-forward "cyclebuffer" "cycle forward" t) (autoload 'cyclebuffer-backward "cyclebuffer" "cycle backward" t) (global-set-key [?\C-x right] 'cyclebuffer-forward) (global-set-key [?\C-x left] 'cyclebuffer-backward) But tend to use iswitchb more often as I have a lot of buffers open: http://www.emacswiki.org/cgi-bin/wiki/IswitchBuffers
[Prev in Thread] | Current Thread | [Next in Thread] |