all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tassilo Horn <tassilo@member.fsf.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Buffer list location
Date: Tue, 11 Aug 2009 20:42:30 +0200	[thread overview]
Message-ID: <87y6pq19bd.fsf@thinkpad.tsdh.de> (raw)
In-Reply-To: f93eaa100908110651v71f605a0g306eda17ed49ba6c@mail.gmail.com

Andrew Goodnough <agoodno@gmail.com> writes:

Hi Andrew,

> I'd like the Buffer List to always appear as a horizontal window at
> the bottom.  But when I have emacs maximized and show the Buffer List,
> it appears in a new window, split vertically on the right side.  I
> think emacs is trying to be smart about where I've got the most screen
> real estate at the moment but I wish it would always go on the bottom.
> Is there a variable to set this by chance?

Is that (a) special for the buffer list, or (b) do you want emacs never
to split vertically?

In case (b), add

    (setq split-width-threshold nil)

to your ~/.emacs.  In case (b), you can use an advice around
buffer-list.

    (defadvice list-buffers (around forbid-horizontal-split activate)
      (let ((split-width-threshold nil))
        ad-do-it))

Bye,
Tassilo





  reply	other threads:[~2009-08-11 18:42 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-11 13:51 Buffer list location Andrew Goodnough
2009-08-11 18:42 ` Tassilo Horn [this message]
2009-08-13  0:43   ` Andrew Goodnough

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=87y6pq19bd.fsf@thinkpad.tsdh.de \
    --to=tassilo@member.fsf.org \
    --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.