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

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

Re: Easier buffer navigtion (alt-tabbing?)


From: Hadron Quark
Subject: Re: Easier buffer navigtion (alt-tabbing?)
Date: Sun, 10 Sep 2006 15:01:17 +0200
User-agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.50 (gnu/linux)

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.


-- 


reply via email to

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