unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: martin rudalics <rudalics@gmx.at>
To: Helmut Eller <eller.helmut@gmail.com>
Cc: emacs-devel@gnu.org
Subject: Re: help-window-select and info-lookup-symbol
Date: Tue, 21 Jul 2009 15:27:26 +0200	[thread overview]
Message-ID: <4A65C23E.3010801@gmx.at> (raw)
In-Reply-To: <m24ot6qkp7.fsf@gmail.com>

 >> A brute force
 >> approach (currently used by info or backtrace) simply restores W1 whe
 >> you press `q' which all so often drives me mad because it destroys the
 >> windows and window-buffer associations I have created in between.
 >
 > For the debugger it's IMO the best option.

When debugging an application which creates a new buffer I have to
create that buffer before running the application in order to see how it
gets filled.  Otherwise, the debugger won't let me see it for long.
Maybe I could show it in another frame, but I don't want to resize my
main frame in order to make another one visible.

 >> Now theoretically, I could restore W1 if and only if the configurations
 >> W2 and W3 are equal.  In practice, however, this approach often failed
 >> here.  Hence, I tried to base the comparison on a weaker predicate of
 >> equality which ignored the identities of buffers displayed in other
 >> windows and the relative sizes of windows.  I got it to work for help
 >> buffers but was not able to make it work realiably with info buffers.
 >
 > Comparing W2 and W3 per compare-window-configurations would probably
 > work as a start, but point should probably not be restored.

My info windows are sometimes open for a couple of minutes, mostly
because I'm to lazy to quit them.  Quitting them at last offers me an
interesting albeit chaotic view of my session's archeology.

 > (defun slime-close-popup-window ()
 >   (when slime-popup-restore-data
 >     (destructuring-bind (popup-window selected-window old-buffer)
 >         slime-popup-restore-data
 >       (bury-buffer)
 >       (when (eq popup-window (selected-window))
 >         (cond ((and (not old-buffer) (not (one-window-p)))
 >                (delete-window popup-window))
 >               ((and old-buffer (buffer-live-p old-buffer))
 >                (set-window-buffer popup-window old-buffer))))
 >       (when (window-live-p selected-window)
 >         (select-window selected-window)))
 >     (kill-local-variable 'slime-popup-restore-data)))
 >
 > popup-window is the window that displays the help content at W2.
 > selected-window was selected at W1.
 > old-buffer was the buffer associated with popup-window at W1.

How do you get the `old-buffer' and `popup-window' values in general?
By comparing window configurations before and after `display-buffer'?
My code included for every window a variable telling whether that window
was split off by `display-buffer' or which buffer the window displayed
before it was "used" by `display-buffer'.

I recall it proved very nasty to save the old buffer value when the
window is re-used again by `display-buffer' because I had to avoid that
a "valuable" non-help content buffer value would get overwritten by the
"uselss" value of a help-content buffer.

martin




  reply	other threads:[~2009-07-21 13:27 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-19 16:24 help-window-select and info-lookup-symbol Helmut Eller
2009-07-20  9:32 ` martin rudalics
2009-07-21 12:33   ` Helmut Eller
2009-07-21 13:27     ` martin rudalics [this message]
2009-07-21 13:51       ` Helmut Eller
2009-07-21 14:12         ` martin rudalics
2009-07-21 15:07           ` Helmut Eller
2009-07-22 10:11             ` martin rudalics
2009-07-22 10:28               ` Helmut Eller
2009-07-26 10:01                 ` martin rudalics
2009-07-26 10:39                   ` Helmut Eller
2009-07-26 11:00                     ` martin rudalics
2009-07-26 12:30                       ` Helmut Eller

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=4A65C23E.3010801@gmx.at \
    --to=rudalics@gmx.at \
    --cc=eller.helmut@gmail.com \
    --cc=emacs-devel@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 public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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).