2017-02-18 114 views

回答

1

這種行爲似乎是由啓動屏幕的大小來觸發。

使初始啓動屏幕更大觸發對我來說, 「看中的啓動畫面」:

emacs -geometry 80x48 

或替代添加一些東西到.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 
)) 

(見https://www.emacswiki.org/emacs/FrameSize

或者,也可以調整決定啓動畫面類型的功能,如下所示:https://emacs.stackexchange.com/questions/20976/x11-why-is-the-emacs-logo-image-missing-on-the-welcome-screen

+0

'emacs -geometry 80x48',以及鏈接「爲什麼是emacs徽標....」解決了我的問題。代碼'(setq initial-frame-alist ....'不。 –

0

嘗試brew install emacs --with-cocoabrew info emacs更多的選擇),也可以輕按不同的配方一樣emacs-plus是建立可可版本在默認情況下

+0

我也嘗試過 - 結果相同。 –

+0

emacs-plus給出了相同的結果 –