基于每个文件(而不是文件类型)禁用自动填充模式
我默认为所有 LaTeX 文件启用自动填充模式。
这通常很好,但有时一个乳胶文件主要包含表格,我想在编辑该特定文件时禁用自动填充模式。
是否可以在 .tex 文件的顶部指定我希望它成为例外? 或者,是否可以在 .emacs 中指定这些文件的路径/名称?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
查看官方 Emacs 文档中的“文件中的局部变量”部分。有
eval
变量,允许评估任何代码。所以它看起来像这样(将其放入文件末尾,注释字符应该是特定于模式的):look onto "Local Variables in Files" section in official Emacs documentation. There is
eval
variable, that allows to evaluate any code. So it will look something like (put this into end of file, comment char should be mode-specific):我喜欢在文件中查找某些内容来确定是否具有自动填充的解决方案。
如果您想在顶部放置一个标识符,您可以使用如下代码:
并且显然将“Some Unique Identifier”更改为合理的内容 - 例如搜索表本身。然后你就会得到你想要的,带有表格的 LaTeX 文件不会被自动填充。
注意:@Alex 建议使用文件局部变量,但根据 手册本身:
I like the solution of looking for something in the file to determine whether or not to have autofill.
If you want to put an identifier at the top, you can use code like this:
And obviously change
"Some Unique Identifier"
to something reasonable - such as a search for the tables themselves. Then you'd get exactly what you want, LaTeX files with tables wouldn't be auto-filled.Note: @Alex suggested using a file-local variable, but this is a mistake according to the manual itself:
从技术上讲,这种方法不会禁用填充模式,但与启用 eval 不同,它是安全的,并且可以达到预期的结果。将这样的行作为文件的第一行。只需指定正确的主要模式(可能是文本),并将填充列设置为适当大的值:
如前所述,您可以编写一个钩子来决定是否应启用自动填充,但我觉得这比必要的工作更多。
This approach does not technically disable fill mode, but it is safe, unlike enabling eval, and achieves the desired result. Put a line like this as the first line of your file. Just specify the correct major mode, probably text, and set the fill-column to an appropriately large value:
As previously suggested, you could write a hook that decides if auto-fill should be enabled, but I felt that was more work than necessary.
不确定这是与哪个 Emacs 版本一起添加的,但您也可以在每个文件的基础上“中性”
auto-fill-function
变量:Not sure which Emacs version this was added with, but you can also 'neuter' the
auto-fill-function
variable on a per-file basis: