Programmatically setting Emacs frame size - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T22:33:59Zhttp://stackoverflow.com/feeds/question/335487http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/335487/programmatically-setting-emacs-frame-size5Programmatically setting Emacs frame sizeJ Cooper2008-12-02T21:18:50Z2009-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#3355182Answer by siukurnin for Programmatically setting Emacs frame sizesiukurnin2008-12-02T21:27:51Z2008-12-02T21:27:51Z<p>Did you try this : emacs -geometry 110x58+200+2 &</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#3355296Answer by Bill White for Programmatically setting Emacs frame sizeBill White2008-12-02T21:30:27Z2008-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#3355611Answer by Alastair for Programmatically setting Emacs frame sizeAlastair2008-12-02T21:39:20Z2008-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#3357612Answer by Chris Conway for Programmatically setting Emacs frame sizeChris Conway2008-12-02T22:59:03Z2008-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#5899871Answer by Cheeso for Programmatically setting Emacs frame sizeCheeso2009-02-26T10:34:33Z2009-02-26T10:34:33Z<pre><code>(setq initial-frame-alist '(
(top . 40) (left . 10)
(width . 128) (height . 68)
)
)
</code></pre>