我已经设置了我的Eclipse Luna以使用默认的自动格式化规则,除了我选中了“启用关/开标签”复选框。我将Off标签和On标签字段分别设置为“@formatter:off”和“@formatter:on”。
我有一些这样的多行注释:
//@formatter:off
...
@ApiOperation(position = 10,
value = "A Value",
notes = "A lengthy description")
...
//@formatter:on
当我保存文件时,Eclipse将其格式化为:
//@formatter:off
...
@ApiOperation(position = 10,
value = "A Value",
notes = "A lengthy description")
...
//@formatter:on
关于缩进,Eclipse Luna似乎并不尊重我使用开/关标签的事实。请注意,开/关标签适用于其他所有内容。
有没有办法让Eclipse不以这种方式调整自动缩进?