Created
May 11, 2012 03:04
-
-
Save suzuki/2657241 to your computer and use it in GitHub Desktop.
split-window-vertically-one-third
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun split-window-vertically-one-third() | |
"Split the selected window into two windows, one above the other, size is one third of window-heihgt" | |
(interactive) | |
(split-window-vertically (/ (window-height) 3))) | |
(global-set-key "\C-x2" 'split-window-vertically-one-third) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment