[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GNU Emacs raison d'etre
From: |
martin rudalics |
Subject: |
Re: GNU Emacs raison d'etre |
Date: |
Tue, 19 May 2020 10:41:02 +0200 |
>> > 1. It's trivial to move a minibuffer-only frame
>> > off screen (and bring it back on screen).
>>
>> Not in my experience. Not even for arbitrary frames.
>
> I think it is, at least on MS Windows, and I think
> on other OSes also.
It's up to the respective window manager to decide that.
> Hm. I've checked only with my setup. Maybe
> something else is going on there.
>
> (progn (make-frame-invisible
> (window-frame (minibuffer-window)))
> (pp-eval-expression
> (frame-parameter nil 'visibility) t))
>
> tells me `t', with my setup. And the frame
> stays visible.
The minibuffer frame does not _stay_ visible. It becomes visible again
because it is supposed to display the result of 'pp-eval-expression' in
the minibuffer.
If you use the correct form - nil stands for the selected frame which is
not the minibuffer-only frame, 'pp-eval-expression' allows one argument
only -
(progn (make-frame-invisible
(window-frame (minibuffer-window)))
(pp-eval-expression
(window-frame (minibuffer-window))))
it will tell you nil, as expected.
martin
- Re: GNU Emacs raison d'etre, (continued)
- Re: GNU Emacs raison d'etre, Eli Zaretskii, 2020/05/20
- Re: GNU Emacs raison d'etre, Dmitry Gutov, 2020/05/21
- Re: GNU Emacs raison d'etre, Eli Zaretskii, 2020/05/22
- Re: GNU Emacs raison d'etre, Dmitry Gutov, 2020/05/22
- Re: GNU Emacs raison d'etre, martin rudalics, 2020/05/20
- Re: GNU Emacs raison d'etre, Eli Zaretskii, 2020/05/21
- Re: GNU Emacs raison d'etre, martin rudalics, 2020/05/21
- RE: GNU Emacs raison d'etre, Drew Adams, 2020/05/18
- Re: GNU Emacs raison d'etre,
martin rudalics <=
- Suppressing beginning/end-of-buffer error messages (WAS: GNU Emacs raison d'etre), Noam Postavsky, 2020/05/21
- Re: Suppressing beginning/end-of-buffer error messages (WAS: GNU Emacs raison d'etre), martin rudalics, 2020/05/22
- Re: Suppressing beginning/end-of-buffer error messages (WAS: GNU Emacs raison d'etre), Noam Postavsky, 2020/05/22
- Re: Suppressing beginning/end-of-buffer error messages (WAS: GNU Emacs raison d'etre), martin rudalics, 2020/05/23
- Re: Suppressing beginning/end-of-buffer error messages (WAS: GNU Emacs raison d'etre), Noam Postavsky, 2020/05/23
- RE: GNU Emacs raison d'etre, Drew Adams, 2020/05/17
- Re: GNU Emacs raison d'etre, Stefan Monnier, 2020/05/17
- RE: GNU Emacs raison d'etre, Drew Adams, 2020/05/17
- Re: GNU Emacs raison d'etre, Dmitry Gutov, 2020/05/17
- Re: GNU Emacs raison d'etre, Stefan Monnier, 2020/05/17