unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Kevin Rodgers <kevin.d.rodgers@gmail.com>
Subject: Re: dedicated frames
Date: Tue, 09 Jan 2007 07:40:21 -0700	[thread overview]
Message-ID: <eo09gj$iq4$1@sea.gmane.org> (raw)
In-Reply-To: <1167833715.051263.12570@a3g2000cwd.googlegroups.com>

rgb wrote:
> Has someone written a version of next-buffer that doesn't
> display buffers that are already displayed in dedicated frames?
> 
> It appears to me to be terribly difficult to tell if a given buffer
> happens to be associated with a dedicated window or frame.

How about:

(defun get-buffer-dedicated-window (buffer &optional all-frames)
   "Return a dedicated window displaying BUFFER, or nil if none.
BUFFER can be a buffer or a buffer name.
ALL-FRAMES determines which frames are considered; see `walk-windows'."
   (catch 'window
     (mapc (lambda (window)
	    (when (or (window-dedicated-p window)
		      (frame-parameter (window-frame window) 'unsplittable))
	      (throw 'window window)))
	  (get-buffer-window-list buffer nil all-frames))
     nil))

I'm not sure how to plug that in to next-buffer -- maybe like this:

(add-to-list 'default-frame-alist
	     '(buffer-predicate . (lambda (buffer)
				    (null
				     (get-buffer-dedicated-window buffer)))))

-- 
Kevin Rodgers
Denver, Colorado, USA

  reply	other threads:[~2007-01-09 14:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-01-03 14:15 dedicated frames rgb
2007-01-09 14:40 ` Kevin Rodgers [this message]
     [not found] ` <mailman.2895.1168353667.2155.help-gnu-emacs@gnu.org>
2007-01-10 14:42   ` rgb

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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='eo09gj$iq4$1@sea.gmane.org' \
    --to=kevin.d.rodgers@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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).