确定 Emacs 中的行终止符
我正在编写一个配置文件,我需要定义该进程是否需要 Windows 格式文件或 unix 格式文件。 我已经获得了预期文件的副本 - 有没有办法可以在不退出 emacs 的情况下检查它是否使用 \n 或 \r\n ?
I'm writing a config file and I need to define if the process expects a windows format file or a unix format file. I've got a copy of the expected file - is there a way I can check if it uses \n or \r\n without exiting emacs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果在 Unix 上打开文件时模型行上显示 (DOS),则行结尾是 Windows 样式。 如果在 Windows 上打开文件时显示 (Unix),则行结尾是 Unix 样式。
来自 Emacs 22.2 手册(节点:Mode Line):
我认为,这里有一个函数展示了如何从 elisp 检查 Emacs 已确定的行结尾类型。 如果它看起来异常复杂,也许确实如此。
If it says (DOS) on the modeline when you open the file on Unix, the line endings are Windows-style. If it says (Unix) when you open the file on Windows, the line endings are Unix-style.
From the Emacs 22.2 manual (Node: Mode Line):
Here's a function that – I think – shows how to check from elisp what Emacs has determined to be the type of line endings. If it looks inordinately complicated, perhaps it is.
如果您进入十六进制模式(Mx 十六进制模式),您应该看到行终止字节。
If you go in hexl-mode (M-x hexl-mode), you shoul see the line termination bytes.
使用 find-file-literally 在 emacs 中打开文件。 如果行末尾有 ^M 符号,则需要 Windows 格式的文本文件。
Open the file in emacs using find-file-literally. If lines have ^M symbols at the end, it expects a windows format text file.
如果文件中没有出现
"\r\n"
终止符,以下 Elisp 函数将返回nil
(否则返回第一次出现的点)。 您可以将其放入.emacs
中并使用Mx check-eol
调用它。The following Elisp function will return
nil
if no"\r\n"
terminators appear in a file (otherwise it returns the point of the first occurrence). You can put it in your.emacs
and call it withM-x check-eol
.