1

我遇到了 eclipse 没有按照我想要的方式格式化评论的问题。当我注释掉代码时,我希望保持对齐,但我很难让它工作。

通缉:

        if (isTrue) {
            // get it done
            doIt();
//      } else {
//          log("Take note of this");
        }

格式化结果:

        if (isTrue) {
            // get it done
            doIt();
// } else {
// log("Take note of this");
        }
4

1 回答 1

-1

Ctrl + 7 似乎在我的 Eclipse 中工作并且格式正常

我也听说过注释掉它的 ctrl + shift + /

于 2013-10-09T14:54:19.373 回答