Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很抱歉这个非常基本的问题。我试图在初始化时在 GNU Emacs 中加载 iMenu。通常它通过执行加载M-x imenu-add-menubar-index。我知道我需要将一些东西放入我的~/.emacs文件中,但我尝试的一切都不起作用。
M-x imenu-add-menubar-index
~/.emacs
我是 GNU Emacs 和 Lisp 的新手,我需要放什么才能自动生成索引菜单?
imenu-add-menubar-index通过添加到其模式挂钩,您可以为属于某个主要模式的所有缓冲区提供一个 Imenu“索引”菜单栏项。例如,
imenu-add-menubar-index
(add-hook 'c-mode-hook #'imenu-add-menubar-index) ; c (add-hook 'python-mode-hook #'imenu-add-menubar-index) ; python