[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Expand/unexpand window possible?
From: |
Pascal J. Bourguignon |
Subject: |
Re: Expand/unexpand window possible? |
Date: |
Thu, 12 Mar 2009 11:29:00 +0100 |
User-agent: |
Gnus/5.101 (Gnus v5.10.10) Emacs/22.2 (gnu/linux) |
Lars Haugseth <njus@larshaugseth.com> writes:
> When typing C-x 1 in a multi-window frame, the current window will fill
> the entire frame, but all other windows will be deleted so that there will
> be no going back to the previous multi-window setup. Is there any way to
> achieve this expand/unexpand functionality without major elisp wizardry on
> my part?
What about minor elisp wizardry on MY part?
(defun temporarily-expand ()
(interactive)
(save-window-excursion
(delete-other-windows)
(message "Finish with %s"
(describe-key-briefly (first (where-is-internal
'abort-recursive-edit))))
(recursive-edit)))
--
__Pascal Bourguignon__
Re: Expand/unexpand window possible?, Marc Tfardy, 2009/03/12
Re: Expand/unexpand window possible?, Andy Stewart, 2009/03/12