unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Lennart Borgman <lennart.borgman.073@student.lu.se>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Q: How can I swap buffers in two windows?
Date: Thu, 22 Sep 2005 19:09:18 +0200	[thread overview]
Message-ID: <4332E53E.6020004@student.lu.se> (raw)
In-Reply-To: <1127403583.568067.179950@g43g2000cwa.googlegroups.com>

Eric Pement wrote:

>This request has appeared several times on this newsgroup, worded in
>different ways, but has never been answered. I have already checked the
>FAQ, M-x apropos, and the Emacs info pages. Can someone please give
>help or direction here?
>
>I have an Emacs frame split into two windows, which may be split
>vertically or horizontally. I would like a single command to swap or
>exchange both windows, i.e., put buffer A into window B, and put buffer
>B into window A. If there are not exactly two windows in the frame,
>issue an error message.
>
>I know that I can do "C-x b", {B}, <RET>, "C-x o", "C-x b", {A}, <RET>,
>but I want to execute it with a single command without typing out the
>buffer names at all. Emacs already knows the names of the buffers in
>each window, so why should I have to type them?
>
>My elisp skills are not well-developed, so I'm asking for help. I have
>GNU Emacs version 21.3.50.8. Thanks in advance.
>  
>
Something like this perhaps:

(defun rotate-window-buffers()
  (interactive)
  (let* ((windows (window-list))
         (buffers (mapcar (lambda(w)
                            (window-buffer w))
                          windows))
         (wpoints (mapcar (lambda(w)
                            (window-point w))
                          windows))
         (w (pop windows))
         )
    (setq windows (reverse windows))
    (push w windows)
    (setq windows (reverse windows))
    (mapc (lambda(w)
            (let ((b (pop buffers))
                  (p (pop wpoints)))
              (set-window-buffer w b)
              (set-window-point w p)))
          windows)))

  parent reply	other threads:[~2005-09-22 17:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-09-22 15:39 Q: How can I swap buffers in two windows? Eric Pement
2005-09-22 16:05 ` Sebastian Luque
2005-09-22 17:09 ` Lennart Borgman [this message]
     [not found] ` <mailman.8091.1127410484.20277.help-gnu-emacs@gnu.org>
2005-09-22 22:15   ` Eric Pement

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=4332E53E.6020004@student.lu.se \
    --to=lennart.borgman.073@student.lu.se \
    --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.
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).