Emacs 从网站拉(粘贴)总是产生字符代码 160 而不是 SPC
当从网络复制代码时(通常在 Ubuntu 中使用 Chrome),我对 Emacs 插入 Char: 的空格感到沮丧。 (160, #o240, #xa0)
凡应有空格字符的地方,Char: SPC (32, #o40, #x20)
。这在编辑器中看起来很好,但一旦我尝试执行代码,就会出现错误。如何让 Emacs 将
实体转换为普通空格字符?
When copying code from the web (usually using Chrome in Ubuntu) I am frustrated by the fact that Emacs inserts blank spaces of Char: (160, #o240, #xa0)
wherever there should be a space character, Char: SPC (32, #o40, #x20)
. This appears fine in the editor but as soon as I try to execute the code I get errors. How can I make Emacs convert
entities into normal space characters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
query-replace
(M-%) 来转换字符。复制粘贴可以帮助您输入不间断空格。You can use
query-replace
(M-%) to convert the characters. Copy-paste can help you enter the non-breaking space.