Emacs:初始窗口大小
可能的重复:
以编程方式设置 Emacs 框架大小
初始 emacs 窗口大小取决于列数和字体(系列+尺寸)。 我使用以下方法在 .emacs
中设置这些参数:
(setq default-frame-alist
'((font . "Menlo-13")
(width . 80)))
当 emacs 启动时,初始窗口会打开,并使用默认内部字体计算出的大小,然后在 .emacs
启动时调整自身大小。读。
您知道避免这种调整大小的任何技巧吗?
我在 MacOSX 上使用 emacs。 (http://emacsformacosx.com/)
谢谢
Possible Duplicate:
Programmatically setting Emacs frame size
The initial emacs window size depends on the number of columns and the font (family+size).
I set those parameters in my .emacs
using :
(setq default-frame-alist
'((font . "Menlo-13")
(width . 80)))
When emacs starts, the initial window opens with a size calculated using the default internal font and then resizes itself when the .emacs
is read.
Do you know any tip to avoid this resize.
I use emacs for MacOSX. (http://emacsformacosx.com/)
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以设置
default-frame-alist
和initial-frame-alist
。如果您将它们设置为相同的值,我认为您不会看到其中一个值发生任何变化。You can set both
default-frame-alist
andinitial-frame-alist
. If you set them to the same value I think you will see no change from one to the other.