我在Eclipse中的项目使用空格来格式化代码,不是标签。使用单行注释注释行时(按 Ctrl + / ),前导空格只会向右移动,与其他非注释行断开调整,例如:
class Sample
{
public int x;
// public int y;
}
我想要的是:
class Sample
{
public int x;
// public int y;
}
手动删除空格很繁琐。这有什么解决方案吗? (插件,某种宏,任何其他?)
我不想使用制表符格式。
答案 0 :(得分:0)
我遇到了同样的问题。我找到了解决方法。