缩进单行注释代码在Eclipse中添加空格

时间:2016-11-09 15:03:43

标签: java eclipse

当我使用ctrl +' i'缩进单行注释代码时在Eclipse中,它会增加额外的空间并抛出该行不对齐。 有没有办法可以缩进单行注释而不向其添加空格。

缩进之前:

public class Test
{
//  public static String str; 
    public static String str1;
}   

缩进后:

public class Test
{
    //  public static String str; 
    public static String str1;
}

请注意:

  1. 仅提及我能找到的问题,这个问题是在2年前提出的,但答案并不令人满意。链接: Remove extra leading spaces in single-line comments in Eclipse

  2. Screenshot of the issue for reference

1 个答案:

答案 0 :(得分:0)

检查您的Formatter选项,并根据您的需要调整打算

或者,您可以使用//@formatter:off//@formatter:on来禁用这两个标记之间的行格式。