How do I set the size of Emacs' window?

前端 未结 10 1448
陌清茗
陌清茗 2020-12-04 06:19

I\'m trying to detect the size of the screen I\'m starting emacs on, and adjust the size and position the window it is starting in (I guess that\'s the frame in emacs-speak)

10条回答
  •  情深已故
    2020-12-04 06:37

    On windows, you could make emacs frame maximized using this function :

    (defun w32-maximize-frame ()
      "Maximize the current frame"
      (interactive)
      (w32-send-sys-command 61488))
    

提交回复
热议问题