Programmatically setting Emacs frame size - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:33:59Z http://stackoverflow.com/feeds/question/335487 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/335487/programmatically-setting-emacs-frame-size 5 Programmatically setting Emacs frame size J Cooper 2008-12-02T21:18:50Z 2009-02-26T10:34:33Z <p>My emacs (on Windows) always launches with a set size, which is rather small, and if I resize it, it's not "remembered" at next start-up. </p> <p>I've been playing with the following:</p> <pre><code>(set-frame-position (selected-frame) 200 2) ; pixels x y from upper left (set-frame-size (selected-frame) 110 58) ; rows and columns w h </code></pre> <p>which totally works when I execute it in the scratch buffer. I put it in my .emacs, and although now when I start the program, I can see the frame temporarily set to that size, by the time <code>*scratch*</code> loads, it resets back to the small default again. </p> <p>Can anyone help me fix up the above code so that it "sticks" on start-up?</p> http://stackoverflow.com/questions/335487/programmatically-setting-emacs-frame-size/335518#335518 2 Answer by siukurnin for Programmatically setting Emacs frame size siukurnin 2008-12-02T21:27:51Z 2008-12-02T21:27:51Z <p>Did you try this : emacs -geometry 110x58+200+2 &amp;</p> <p>Found at :</p> <p><a href="http://web.mit.edu/answers/emacs/emacs_window_size.64R.html" rel="nofollow">http://web.mit.edu/answers/emacs/emacs_window_size.64R.html</a></p> http://stackoverflow.com/questions/335487/programmatically-setting-emacs-frame-size/335529#335529 6 Answer by Bill White for Programmatically setting Emacs frame size Bill White 2008-12-02T21:30:27Z 2008-12-02T21:30:27Z <p>Here's what I use in my ~/.emacs:</p> <p>(add-to-list 'default-frame-alist '(left . 0))</p> <p>(add-to-list 'default-frame-alist '(top . 0))</p> <p>(add-to-list 'default-frame-alist '(height . 50))</p> <p>(add-to-list 'default-frame-alist '(width . 155))</p> http://stackoverflow.com/questions/335487/programmatically-setting-emacs-frame-size/335561#335561 1 Answer by Alastair for Programmatically setting Emacs frame size Alastair 2008-12-02T21:39:20Z 2008-12-02T21:39:20Z <p>For emacs on windows, I generally put it in the registry.</p> <pre><code>HKCU\Software\GNU\Emacs\ Emacs.Geometry REG_SZ "245x74" </code></pre> <p>(This keeps machine-local settings out of my .emacs file, which I share with many other machines...)</p> http://stackoverflow.com/questions/335487/programmatically-setting-emacs-frame-size/335761#335761 2 Answer by Chris Conway for Programmatically setting Emacs frame size Chris Conway 2008-12-02T22:59:03Z 2008-12-02T22:59:03Z <p>See this previous question as well: <a href="http://stackoverflow.com/questions/92971/how-do-i-set-the-size-of-emacs-window">How do I set the size of emacs’ window?</a></p> http://stackoverflow.com/questions/335487/programmatically-setting-emacs-frame-size/589987#589987 1 Answer by Cheeso for Programmatically setting Emacs frame size Cheeso 2009-02-26T10:34:33Z 2009-02-26T10:34:33Z <pre><code>(setq initial-frame-alist '( (top . 40) (left . 10) (width . 128) (height . 68) ) ) </code></pre>