el-get/recipes/maxframe.el
Dave Abrahams 70ae81dfdc Make the maxframe recipe less of a sledgehammer
Do not force all windows to be maximized just because I want maxframe
available.  Also, do not force-load maxframe; instead, autoload it.
2011-05-21 22:39:52 -04:00

10 lines
407 B
EmacsLisp

(:name maxframe
:type git
:url "http://github.com/rmm5t/maxframe.el.git"
:post-init (lambda ()
(autoload 'maximize-frame "maxframe"
"Maximizes the frame to fit the display if under a windowing
system." t)
(autoload 'restore-frame "maxframe"
"Restores a maximized frame. See `maximize-frame'." t)))