help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Is there any key shortcut to switch through buffers in the emacs?


From: RD
Subject: Re: Is there any key shortcut to switch through buffers in the emacs?
Date: Wed, 08 Mar 2006 21:52:09 -0500
User-agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)

op132650c@mail.telepac.pt wrote:
Is there any key shortcut to switch through buffers in the emacs.?

Thanks,
Pedro



How about binding some key to bury-buffer?
E.g. (global-set-key [f5 f5] 'bury-buffer) will cycle through buffers upon pressing f5 twice.
Don't forget about mouse 1 and mouse 3 on the buffer name in the mode line.


bury-buffer is an interactive built-in function.
(bury-buffer &optional BUFFER)

Put BUFFER at the end of the list of all buffers.
There it is the least likely candidate for `other-buffer' to return;
thus, the least likely buffer for C-x b to select by default.
If BUFFER is nil or omitted, bury the current buffer.
Also, if BUFFER is nil or omitted, remove the current buffer from the
selected window if it is displayed there.


Regards,
Bob


reply via email to

[Prev in Thread] Current Thread [Next in Thread]