我最近开始使用日食火星并发现了一个非常恼人的问题。当我使用ctrl+shft+/
注释多行代码块时,它会在/ * * /之间注释块,但是一旦我保存它,它就会在块中的所有行前面放置一个*。现在,当我尝试使用ctrl+shft+\
取消注释时,只有开始&结束/ *和* /被删除但*添加到所有行没有。我需要更改哪些设置才能删除此自动格式化?
示例:
保存前注释格式
/*This is just an example
of multi-line block comment
in eclipse mars*/
保存后的注释格式
/*
* This is just an example
* of multi-line block comment
* in eclipse mars
*/
保存后取消评论格式, *不会被删除由eclipse添加
* This is just an example
* of multi-line block comment
* in eclipse mars