回答:
Emacsには、優れた組み込みのカスタマイズインターフェイスがあります。
選択しOptions › Customize Emacs › Specific Option
、入力を開始してから、を押してtool
でTAB始まるオプションを表示しますtool
。tool-bar-mode
次に選択します。値を切り替えてオフにし、を押しSave for future sessions
ます。
マイケルに同意します。ただし、この行を.emacsファイルに追加するだけの場合は、コマンドラインモードでemacsを実行するとエラーが発生します。したがって、より良い解決策は、以下を.emacsファイルに追加することです。
(if window-system
(tool-bar-mode -1)
)
そのため、ツールバーはGUIで実行したときにのみ非表示になります。コマンドラインモードのEmacsにはツールバーがないようです。
将来の参考のために。
ツールバー、メニューバー、スクロールバーが非表示の〜/ .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に問題があると思いますが、理解できません。