2016-11-09 101 views
0

當我在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. 僅供參考,以我的問題,我能找到的就是這個問題aske d 2年前但答案並不理想。鏈接: Remove extra leading spaces in single-line comments in Eclipse

  2. Screenshot of the issue for reference

回答

0

檢查YOUT腳趾Formatter選擇和調整擬您的需求

或者您可以使用//@formatter:off//@formatter:on禁用格式化這兩個標記之間的行。

相關問題