Answers:
Emacs具有一个不错的内置自定义界面。
选择Options › Customize Emacs › Specific Option
,开始输入tool
,然后单击TAB以查看选项tool
。tool-bar-mode
然后选择。切换其值以将其关闭,然后按Save for future sessions
。
仅供将来参考。
〜/ .emacs文件,其中隐藏了工具栏,菜单栏和滚动条
;; Disabling things
;;-----------------------------------------------------------------------
(menu-bar-mode -1)
(toggle-scroll-bar -1)
(tool-bar-mode -1)
;;Note: If, after turning any of these off, you want to re-enable them for a single emacs window, you can do so by pressing Meta-x and then typing the command at the M-x prompt. (Copied from Web)
;;Example:
;;M-x tool-bar-mode
;;will turn the toolbar back on.
;;-----------------------------------------------------------------------
现在,您的emacs将如下所示。
.emacs
-file 出现了一些问题,但我不理解。