窗口 – 不要用emacs显示^ M个字符

前端之家收集整理的这篇文章主要介绍了窗口 – 不要用emacs显示^ M个字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道是否有办法临时不显示文件中的^ M个字符.我不想删除它,我只是不想显示它们.

干杯,

@H_502_6@ 我使用以下功能(忘了找到它):
(defun hide-ctrl-M ()
  "Hides the disturbing '^M' showing up in files containing mixed UNIX and DOS line endings."
  (interactive)
  (setq buffer-display-table (make-display-table))
  (aset buffer-display-table ?\^M []))
原文链接:https://www.f2er.com/bash/383677.html

猜你在找的Bash相关文章