简体   繁体   English

OS X Yosemite-emacs欢迎屏幕上没有样式

[英]OS X Yosemite - no styles at emacs welcome screen

I have been installed emacs 25.1 on OS X Yosemite. 我已经在OS X Yosemite上安装了emacs 25.1。

brew cask install emacs

Welcome screen looks like: 欢迎屏幕如下所示:

在此处输入图片说明

But must be similar to 但必须类似于

在此处输入图片说明

So no styles, no pictures. 所以没有样式,没有图片。

What am I missing? 我想念什么?

UPDATE: 更新:

brew install emacs --with-cocoa

Gives the same result. 给出相同的结果。

This behaviour appears to be triggered by the size of the start up screen. 此行为似乎是由启动屏幕的大小触发的。

Making the initial start up screen bigger triggers the "fancy splash screen" for me: 使初始启动屏幕更大会触发“花式启动屏幕”:

emacs -geometry 80x48

Or instead add something to the .emacs file... 或者改为在.emacs文件中添加一些内容...

;; initial window
(setq initial-frame-alist
 '((width . 202) ; character
  (height . 60) ; lines
 ))

;; default/subsequent window
(setq default-frame-alist
 '((width . 202) ; character
  (height . 60) ; lines
))

(See https://www.emacswiki.org/emacs/FrameSize for more details.) (有关更多详细信息,请参见https://www.emacswiki.org/emacs/FrameSize 。)

Alternatively, adjust the function which decides what kind of start up screen to display as described here: https://emacs.stackexchange.com/questions/20976/x11-why-is-the-emacs-logo-image-missing-on-the-welcome-screen 或者,按如下所述调整决定显示哪种启动屏幕的功能: https : //emacs.stackexchange.com/questions/20976/x11-why-is-the-emacs-logo-image-missing-on欢迎屏幕

尝试brew install emacs --with-cocoabrew info emacs以获得更多选项),或点击默认生成Cocoa版本的其他公式,例如emacs-plus

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM