From: Carsten Dominik <dominik@science.uva.nl>
To: martin rudalics <rudalics@gmx.at>
Cc: 1806@emacsbugs.donarmstrong.com,
Carsten Dominik <dominik@science.uva.nl>
Subject: bug#1806: dired-pop-to-buffer in wrong place
Date: Thu, 8 Jan 2009 12:52:04 +0100 [thread overview]
Message-ID: <DFE4125F-0943-4481-A4CC-CD4283C6147C@uva.nl> (raw)
In-Reply-To: <496483A8.8010805@gmx.at>
[-- Attachment #1: Type: text/plain, Size: 2239 bytes --]
On Jan 7, 2009, at 11:27 AM, martin rudalics wrote:
> > I can't image a situation when someone will want to display a narrow
> > window on a full-height side window. At least I think currently
> we should
> > restore the old behavior when these commands displayed a narrow
> window
> > below the original window instead of a side window.
>
> I did this for `dired-pop-to-buffer'.
>
> > I think a general rule of thumb for finding all such cases should
> be the
> > following: when there is a call to `fit-window-to-buffer' after
> calling
> > `pop-to-buffer' then split windows vertically because otherwise
> > `fit-window-to-buffer' makes no sense since it adjusts the window
> height
> > and can't do this on a full-height horizontally split window.
>
> Good suggestion. I found the following candidates:
>
> `Electric-pop-up-window', `ibuffer-confirm-operation-on',
> `disabled-command-function', `proced-send-signal',
> `fancy-startup-screen', `display-time-world', `widget-choose'.
>
> Can someone comment on these? We might also have to consider windows
> affected by `temp-buffer-resize-mode'. I'll leave it to Carsten to
> figure out what's best for `org-mode'.
Hi Martin,
org-mode already protects itself against this possibility, I think:
Here is my code:
(defun org-fit-window-to-buffer (&optional window max-height min-height
shrink-only)
"Fit WINDOW to the buffer, but only if it is not a side-by-side
window.
WINDOW defaults to the selected window. MAX-HEIGHT and MIN-HEIGHT are
passed through to `fit-window-to-buffer'. If SHRINK-ONLY is set, call
`shrink-window-if-larger-than-buffer' instead, the hight limit are
ignored in this case."
(cond ((> (frame-width) (window-width window))
;; do nothing if another window would suffer
)
((and (fboundp 'fit-window-to-buffer) (not shrink-only))
(fit-window-to-buffer window max-height min-height))
((fboundp 'shrink-window-if-larger-than-buffer)
(shrink-window-if-larger-than-buffer window)))
(or window (selected-window)))
If the current window is not the full frame width, I do not adjust its
size because it would shink other windows along with it.
- Carsten
>
>
> As for `calendar' I share Stefan's POV ...
>
> martin
[-- Attachment #2: Type: text/html, Size: 8850 bytes --]
next prev parent reply other threads:[~2009-01-08 11:52 UTC|newest]
Thread overview: 166+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-06 15:29 bug#1806: dired-pop-to-buffer in wrong place Juri Linkov
2009-01-06 17:33 ` martin rudalics
2009-01-06 17:54 ` Juri Linkov
2009-01-06 18:25 ` martin rudalics
2009-01-06 21:09 ` Juri Linkov
2009-01-07 10:27 ` martin rudalics
2009-01-07 12:09 ` Juri Linkov
2009-01-07 15:34 ` martin rudalics
2009-01-07 17:47 ` Juri Linkov
2009-01-07 20:00 ` martin rudalics
2009-01-08 7:42 ` martin rudalics
2009-01-08 22:55 ` Juri Linkov
2009-01-09 9:30 ` martin rudalics
2009-01-13 23:46 ` Juri Linkov
2009-01-14 14:20 ` martin rudalics
2009-01-14 18:00 ` Stefan Monnier
2009-01-14 21:55 ` martin rudalics
2009-01-14 22:19 ` Stefan Monnier
2009-01-15 10:36 ` martin rudalics
2009-01-15 14:59 ` Stefan Monnier
2009-01-15 22:59 ` Juri Linkov
2009-01-16 2:19 ` Stefan Monnier
2009-01-20 15:59 ` martin rudalics
2009-01-21 2:51 ` Stefan Monnier
2009-04-28 22:58 ` Juri Linkov
2009-04-29 7:13 ` martin rudalics
2009-04-29 9:54 ` Juri Linkov
2009-04-29 12:39 ` martin rudalics
2009-04-30 11:47 ` Juri Linkov
2009-04-29 15:28 ` Stefan Monnier
2009-04-30 9:06 ` martin rudalics
2009-04-30 18:29 ` Stefan Monnier
2009-05-01 10:04 ` martin rudalics
2009-05-01 17:24 ` Stefan Monnier
2009-05-02 6:59 ` martin rudalics
2009-05-04 13:52 ` Stefan Monnier
2009-05-04 16:40 ` martin rudalics
2009-05-02 11:48 ` Juri Linkov
2009-05-02 13:09 ` martin rudalics
2009-05-02 13:54 ` Juri Linkov
2009-05-02 18:53 ` martin rudalics
2009-05-02 20:57 ` Juri Linkov
2009-05-02 22:39 ` Juri Linkov
2009-05-03 7:50 ` martin rudalics
2009-05-03 11:46 ` Juri Linkov
2009-05-03 19:02 ` martin rudalics
2009-05-05 7:04 ` martin rudalics
2009-05-17 19:54 ` Juri Linkov
2009-05-18 8:11 ` martin rudalics
2009-05-18 10:59 ` Roland Winkler
2009-05-18 12:14 ` martin rudalics
2009-05-18 15:04 ` Roland Winkler
2009-05-18 19:44 ` Stefan Monnier
2009-05-19 0:09 ` Juri Linkov
2009-05-18 8:11 ` martin rudalics
2009-05-18 18:49 ` Glenn Morris
2009-05-19 0:19 ` Juri Linkov
2009-10-03 2:20 ` Glenn Morris
2009-10-05 21:45 ` Juri Linkov
2009-10-05 22:27 ` Stephen Berman
2009-10-06 2:53 ` Glenn Morris
2009-10-06 8:17 ` Stephen Berman
2009-10-06 22:38 ` Juri Linkov
2009-10-06 2:52 ` Glenn Morris
2009-10-06 3:55 ` Stefan Monnier
2009-10-06 7:22 ` Glenn Morris
2009-10-06 8:19 ` Stefan Monnier
2009-10-07 2:58 ` Glenn Morris
2009-10-07 5:54 ` Stefan Monnier
2009-10-06 8:56 ` martin rudalics
2009-10-06 16:19 ` Glenn Morris
2009-10-06 16:46 ` Stefan Monnier
2009-10-06 22:38 ` Juri Linkov
2009-10-07 2:58 ` Glenn Morris
2009-10-12 20:32 ` Juri Linkov
2009-10-12 22:57 ` Glenn Morris
2009-10-13 22:37 ` Juri Linkov
2009-10-14 20:35 ` Juri Linkov
2009-10-15 5:39 ` martin rudalics
2009-10-15 22:29 ` Juri Linkov
2009-10-16 0:30 ` Stefan Monnier
2009-10-16 7:05 ` martin rudalics
2009-10-16 13:09 ` Stefan Monnier
2009-10-16 13:25 ` martin rudalics
2009-10-16 15:37 ` Stefan Monnier
2009-10-16 16:35 ` martin rudalics
2009-10-16 20:41 ` Stefan Monnier
2009-10-17 9:03 ` martin rudalics
2009-10-18 1:40 ` Stefan Monnier
2009-10-18 10:24 ` martin rudalics
2009-10-18 14:45 ` Stefan Monnier
2009-10-18 15:34 ` martin rudalics
2009-10-19 2:08 ` Stefan Monnier
2009-10-19 7:36 ` martin rudalics
2009-10-19 14:01 ` Stefan Monnier
2009-10-19 15:16 ` martin rudalics
2009-10-19 18:35 ` Stefan Monnier
2009-10-20 7:35 ` martin rudalics
2009-10-20 13:30 ` Stefan Monnier
2009-10-20 15:14 ` martin rudalics
2009-10-20 19:45 ` Stefan Monnier
2009-10-16 7:05 ` martin rudalics
2009-10-16 9:38 ` Juri Linkov
2009-10-16 12:04 ` martin rudalics
2009-10-16 16:10 ` Glenn Morris
2009-10-16 13:15 ` Stefan Monnier
2009-10-06 18:26 ` Glenn Morris
2009-10-06 22:38 ` Juri Linkov
2009-05-19 0:18 ` Juri Linkov
2009-05-19 2:04 ` Stefan Monnier
2009-01-14 23:37 ` Juri Linkov
2009-01-15 10:37 ` martin rudalics
2009-01-15 23:00 ` Juri Linkov
2009-01-16 14:52 ` martin rudalics
2009-01-14 21:28 ` Juri Linkov
2009-01-14 22:01 ` martin rudalics
2009-01-14 23:16 ` Stefan Monnier
[not found] ` <jwv63kpg30v.fsf-monnier+emacsbugreports@gnu.org>
2009-01-08 19:25 ` martin rudalics
2009-01-08 22:59 ` Juri Linkov
[not found] ` <jwvy6xl9mz4.fsf-monnier+emacsbugreports@gnu.org>
2009-01-09 9:30 ` martin rudalics
2009-01-09 17:19 ` Stefan Monnier
2009-01-14 14:20 ` martin rudalics
2009-01-14 18:00 ` Stefan Monnier
2011-10-04 22:57 ` Glenn Morris
2011-10-04 23:55 ` Juri Linkov
2011-10-05 22:13 ` Chong Yidong
2011-10-05 23:23 ` Juri Linkov
2011-10-06 2:03 ` Chong Yidong
2011-10-06 15:20 ` Juri Linkov
2011-10-10 20:51 ` Juri Linkov
2009-01-08 14:31 ` Roland Winkler
2009-01-08 11:52 ` Carsten Dominik [this message]
2009-01-08 19:25 ` martin rudalics
2009-01-06 22:07 ` Stefan Monnier
2009-01-06 23:27 ` Juri Linkov
2009-01-07 4:23 ` Stefan Monnier
2012-09-22 13:24 ` martin rudalics
2012-09-22 23:54 ` Juri Linkov
2012-09-23 9:22 ` martin rudalics
2012-09-24 8:22 ` Juri Linkov
2012-09-24 9:40 ` martin rudalics
2012-09-25 8:05 ` Juri Linkov
2012-09-25 9:59 ` martin rudalics
2012-09-26 6:24 ` Juri Linkov
2012-09-26 8:48 ` martin rudalics
2012-09-26 10:10 ` Juri Linkov
2012-09-26 11:03 ` martin rudalics
2012-09-27 8:01 ` Juri Linkov
2012-09-27 17:32 ` martin rudalics
2012-09-27 19:24 ` Juri Linkov
2012-09-28 6:32 ` martin rudalics
2012-09-28 9:38 ` Juri Linkov
2012-09-28 13:14 ` martin rudalics
2012-09-28 15:27 ` Juri Linkov
2012-09-30 10:47 ` martin rudalics
2012-09-30 13:40 ` Juri Linkov
2012-10-03 23:29 ` Juri Linkov
2012-10-04 3:55 ` Drew Adams
2012-10-04 7:45 ` martin rudalics
2012-10-04 14:04 ` Drew Adams
2012-10-04 7:44 ` martin rudalics
2012-10-04 8:51 ` Juri Linkov
2012-10-04 13:17 ` martin rudalics
2012-09-26 3:16 ` Chong Yidong
2012-09-26 8:48 ` martin rudalics
2012-09-26 11:22 ` Juanma Barranquero
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=DFE4125F-0943-4481-A4CC-CD4283C6147C@uva.nl \
--to=dominik@science.uva.nl \
--cc=1806@emacsbugs.donarmstrong.com \
--cc=rudalics@gmx.at \
/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).