我在 emacs 中寻找类似 (setq show-trailing-whitespace t) 的东西,其中所有尾随空格都非常清晰,即突出显示。我对这种选项的搜索大多出现了删除所有尾随空格的示例,这根本不是我想要的。
问问题
10136 次
2 回答
35
点击:
Window > Preferences > General > Editors > Text Editors
然后单击链接“空白字符”以指定应显示的内容。
于 2012-07-21T22:11:48.407 回答
2
我为此决定的需要一个插件,但还不错。然后,您的尾随空格将在文件中显示为 eclerror/warning。
1: eclipse checkstyle 插件 2: 让 checkstyle 配置随心所欲。如果您只想要尾随空格:
<module name="Checker">
<module name="TreeWalker">
<module name="Regexp">
<property name="format" value="[ \t]+$"/>
<property name="illegalPattern" value="true"/>
<property name="message" value="Trailing whitespace"/>
</module>
</module>
</module>
于 2015-02-20T23:16:07.790 回答