我在 Linux Mint 8 上安装了 emacs23。我想隐藏工具栏,我可以用 来实现Options > Show/Hide > Tool-bar
。但是下次启动 emacs 时工具栏又会出现。我该如何永久隐藏它?
答案1
将以下内容添加到您的初始化文件(~/.emacs
或_emacs
或~/.emacs.d/init.el
):
(tool-bar-mode -1)
答案2
Emacs 有一个很好的内置定制界面。
选择Options › Customize Emacs › Specific Option
,开始输入tool
,然后点击TAB查看以 开头的选项tool
。选择tool-bar-mode
。切换其值以将其关闭,然后按Save for future sessions
。
答案3
仅供将来参考。
〜/.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 将看起来像这。
答案4
我找到了这个帖子,但没有任何答案能直接帮助我。我想立即隐藏标签栏,但也希望能够在需要时显示它。
经过一番搜索,然后 RTF米我意识到可以这样做M-x toggle-frame-tab-bar
。这很方便,因为您可以将其绑定到一个键,并在特定框架中随时切换它。在 Emacs 28.2 中,似乎有一个错误,切换后框架不会刷新/重新绘制,但是当您移动点(例如C-n
)时,您会看到切换的效果。