我想隐藏欢迎屏幕。
我的.emacs
档案:
(setq c-basic-offset 4) ; indents 4 chars
(setq tab-width 4) ; and 4 char wide for TAB
(setq indent-tabs-mode nil) ; And force use of spaces
(turn-on-font-lock) ; same as syntax on in Vim
(setq width (max width (+ (length str) 1))) ;line numbers
(setq inhibit-splash-screen t) ; hide welcome screen
我尝试未成功运行.emacs中的最后一行代码。
如何在Emacs中隐藏欢迎屏幕?