From: Hadron Quark <hadronquark@gmail.com>
Subject: Re: Easier buffer navigtion (alt-tabbing?)
Date: Sun, 10 Sep 2006 15:01:17 +0200 [thread overview]
Message-ID: <87irjvub8i.fsf@gmail.com> (raw)
In-Reply-To: 87y7ss6ps0.fsf@kip.sateh.com
Stefan Arentz <stefan.arentz@gmail.com> writes:
> Is there a way that makes it easier to navigate through buffers? What I
> would really like is something like alt-tab to popup a list of recent
> buffer to quickly switch back and forth between them. Does such an
> extension exist?
>
> S.
I use the bs stuff and the cyclebuffer stuff in emacs-goodies which
comes in ubuntu.
In my .emacs :
;; buffers stuff
(global-set-key [(f8)] 'bs-show)
;; 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)
You wouldn't use alt-tab since that's generally the GUI desktop app
switcher.
--
next prev parent reply other threads:[~2006-09-10 13:01 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-10 9:21 Easier buffer navigtion (alt-tabbing?) Stefan Arentz
2006-09-10 9:37 ` Colin S. Miller
2006-09-10 9:36 ` Stefan Arentz
2006-09-10 12:30 ` Colin S. Miller
2006-09-10 13:01 ` Hadron Quark [this message]
2006-09-10 14:51 ` Stefan Arentz
2006-09-10 19:49 ` Hadron Quark
2006-09-10 13:03 ` B. T. Raven
2006-09-10 16:12 ` Drew Adams
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=87irjvub8i.fsf@gmail.com \
--to=hadronquark@gmail.com \
/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.