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.
有没有办法添加 lisp 代码,最好是在注释中,以便在 Emacs 加载该文件时执行?
具体来说,我想为特定的 LaTeX 文件关闭自动填充模式。我知道这样的事情可以通过模式挂钩来完成,但我不想对所有 LaTeX 文件都这样做。
Emacs 的 AUCTeX 将特定于文件的设置存储在已编辑文件末尾的注释中的方式使我怀疑可以使用一般的 lisp 片段来完成类似的操作,例如(auto-fill-mode 0)在 LaTeX 开头或结尾的注释中文件。
(auto-fill-mode 0)
M-x add-file-local-variable RET eval RET (auto-fill-mode -1) RET
add-file-local-variable
eval
(auto-fill-mode -1)
这将使用适当的注释语法在文件末尾添加注释。eval可以包含任何 lisp 形式,但会要求确认一些。