From: Rainer Stengele <rainer.stengele@diplan.de>
To: help-gnu-emacs@gnu.org
Subject: Re: managing buffers
Date: Wed, 12 Sep 2007 15:40:48 +0200 [thread overview]
Message-ID: <y%RFi.7$tK1.5149835@news.odn.de> (raw)
In-Reply-To: <87k5qwmlp7.fsf@yahoo.com.br>
Daniel C. Bastos schrieb:
> How do you guys manage your buffers? I'm currently using cycle-buffer.el
> and I attach the non-permissive functions to [f1] and [f2] and then I go
> back and forth between buffers with these keys, which is fast and nice.
>
> It's nice to be able to go back to the last buffer you were in, but
> sometimes you have too many buffers open and you know which one you
> want, so you don't want to search your ring of buffers one by one. For
> that I usually C-x b and use TAB to complete my buffer name.
>
> I usually use the GNU emacs on terminals, not on X, so speedbar is not
> really helpful there. Besides, I rather leave the mouse aside. So
> although I have an okay buffer management, I sometimes feel it could be
> better; so I was wondering how you guys do it.
I am very glad with this:
(require 'bs)
(global-set-key "\C-x\C-b" 'bs-show)
;; invoke buffer-list with C-F11
(global-set-key [(control f11)] 'bs-show)
and this:
;; M-F12 opens a buffer that contains the recent opened buffers
;;recentf
(require 'recentf)
(recentf-mode 1)
(setq recentf-max-saved-items 500)
(setq recentf-max-menu-items 60)
(global-set-key [(control f12)] 'recentf-open-files)
rainer
next prev parent reply other threads:[~2007-09-12 13:40 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-09-12 6:39 managing buffers Daniel C. Bastos
2007-09-12 13:03 ` Peter Dyballa
2007-09-13 6:09 ` Kevin Rodgers
[not found] ` <mailman.788.1189663790.18990.help-gnu-emacs@gnu.org>
2007-09-13 6:33 ` Tassilo Horn
2007-09-12 13:40 ` Rainer Stengele [this message]
2007-09-13 3:33 ` Daniel C. Bastos
2007-09-13 3:43 ` Daniel C. Bastos
2007-09-16 1:00 ` Xavier Maillard
2007-09-12 14:07 ` Nikolaj Schumacher
2007-09-13 20:24 ` Stefan Reichör
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='y%RFi.7$tK1.5149835@news.odn.de' \
--to=rainer.stengele@diplan.de \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.