将记事本++中实际显示的EOL符号更改为¬


2

所以,当我展示EOL角色时,我会得到这个丑陋的笨重的符号,我想以某种方式改变它,最好是¬

而不是(LF)或(CR),但不那么令人不安和分散注意力。

有任何想法吗?

Answers:


1

下载Notepad ++源代码。

如果找到符号 ControlCharacterString
在文件中 <notepad++ source root>\scintilla\src\Editor.cxx,你会看到那些符号的数组(“NUL”,“SOH”,......,“CR”,......等等......)

如果你按照自己的意愿替换它们并再次从这些源构建Notepad ++,那么你将会改变它。但是,符号将保持倒圆形状。更改此项将需要更多代码更改。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.