|
|
|
|
|
by HelloNurse
3137 days ago
|
|
I use a nice plugin called maxframe, which apart from resizing the frame after a while and not when it's first displayed is not "wonky". I have yet to try multiple frames on multiple screens. Salient code: (defun w32-maximize-frame ()
"Maximize the current frame (windows only)"
(interactive)
(w32-send-sys-command 61488)) (defun w32-restore-frame ()
"Restore a minimized/maximized frame (windows only)"
(interactive)
(w32-send-sys-command 61728)) |
|