help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: creating 6 balanced windows in a single command


From: Terrence Brannon
Subject: Re: creating 6 balanced windows in a single command
Date: Wed, 08 Dec 2010 15:23:51 -0000
User-agent: G2/1.0

Actually this function works better when you have two monitors:

(defun MakeSixWindows ()
  (interactive)
  (delete-other-windows)
  (split-window-vertically)
  (split-window-horizontally)
  (split-window-horizontally)
  (other-window 3)
  (split-window-horizontally)
  (split-window-horizontally)
  (balance-windows)
)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]