vote up 5 vote down star
1

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.

I've been playing with the following:

(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

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 *scratch* loads, it resets back to the small default again.

Can anyone help me fix up the above code so that it "sticks" on start-up?

flag

5 Answers

vote up 6 vote down check

Here's what I use in my ~/.emacs:

(add-to-list 'default-frame-alist '(left . 0))

(add-to-list 'default-frame-alist '(top . 0))

(add-to-list 'default-frame-alist '(height . 50))

(add-to-list 'default-frame-alist '(width . 155))

link|flag
I had given up on this problem for a while ago, using your code fixed it finally :) – Rene Saarsoo Dec 6 '08 at 19:42
vote up 2 vote down

Did you try this : emacs -geometry 110x58+200+2 &

Found at :

http://web.mit.edu/answers/emacs/emacs_window_size.64R.html

link|flag
vote up 1 vote down

For emacs on windows, I generally put it in the registry.

HKCU\Software\GNU\Emacs\
    Emacs.Geometry REG_SZ "245x74"

(This keeps machine-local settings out of my .emacs file, which I share with many other machines...)

link|flag
vote up 2 vote down

See this previous question as well: How do I set the size of emacs’ window?

link|flag
vote up 1 vote down
(setq initial-frame-alist '(
		    (top . 40) (left . 10)
		    (width . 128) (height . 68)
		    )
  )
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.