|
|
|
|
|
by delta1
3138 days ago
|
|
> ... I also set Emacs to full screen. I'd like to do this on Windows as well, but Windows and Emacs don't really love each other and it always ends up in some wonky state when I try this (add-to-list 'default-frame-alist '(fullscreen . maximized))
Seems to work fine for mehttps://emacs.stackexchange.com/a/3008 |
|
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))