From: "Colin S. Miller" <no-spam-thank-you@csmiller.demon.co.uk>
Subject: Re: Easier buffer navigtion (alt-tabbing?)
Date: Sun, 10 Sep 2006 13:30:44 +0100 [thread overview]
Message-ID: <45040587$0$75036$14726298@news.sunsite.dk> (raw)
In-Reply-To: <87slj06p1q.fsf@kip.sateh.com>
Stefan Arentz wrote:
> "Colin S. Miller" <no-spam-thank-you@csmiller.demon.co.uk> writes:
>
>> Stefan,
>> C-x b creates a list of open buffers.
>>
>> The following code, in your init.el uses Ibuffer instead of buffer
>> for this, and makes it open in a new frame.
>>
>> The frame is left open after you switch buffers, but that shouldn't
>> be a problem.
>
> Hm. Odd.
>
> Symbol's function definition is void: ibuffer-list-buffers
>
> I do succesfully (require 'ibuffer) and I have the last version of that
> package from http://www.shootybangbang.com/software/ibuffer.el.
>
> I am on GNU Emacs 21.4.1 (i386-apple-darwin8.7.1). Should I try a 22
> version?
>
> S.
Stefan,
Oops.
I use Xemacs (21.4.19).
I thought this was comp.emacs.xemacs, not gnu.emacs.help,
so I didn't give a warning that it mightn't work.
XEmacs comes with a version of Ibuffer.
In XEmacs, the function ibuffer-other-window is a wrapper around
ibuffer.
A suitable (untested) definition is
(defun ibuffer-other-window ()
"Like `ibuffer', but displayed in another window by default."
(interactive "P")
(ibuffer t))
Alternatively,
using this code, instead of the code in my previous post should
make the standard buffer-mode pop up a window.
(setq special-display-buffer-names
'(
("*Buffer List*"
(modeline . nil) (unsplittable . nil)
(top-toolbar-visible-p . nil) (menubar-visible-p . nil)
(height . 10) (width . 70) (top . 0) (left . 444)
(auto-raise-mode . t))
))
(define-key Buffer-menu-mode-map [return] 'Buffer-menu-other-window)
HTH,
Colin S. Miller
--
Replace the obvious in my email address with the first three letters of the hostname to reply.
next prev parent reply other threads:[~2006-09-10 12:30 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 [this message]
2006-09-10 13:01 ` Hadron Quark
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='45040587$0$75036$14726298@news.sunsite.dk' \
--to=no-spam-thank-you@csmiller.demon.co.uk \
/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.