如何在eclipse中显示尾随空格?

时间:2012-07-21 22:06:41

标签: eclipse ide whitespace

我在emacs中寻找像(setq show-trailing-whitespace t)这样的东西,其中所有的尾随空白都是明显的,即突出显示。我对这种选项的搜索大部分都显示了删除所有尾随空格的示例,这完全不是我正在查看的内容。

2 个答案:

答案 0 :(得分:32)

点击:

Window > Preferences > General > Editors > Text Editors

然后点击链接“空格字符”以指定应显示的内容。

答案 1 :(得分: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>