Eclipse Mars 的阻止评论问题
Block comment issue with Eclipse Mars
我最近开始使用eclipse mars,发现一个非常恼人的问题。当我使用 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
最后,我使用了此 answer 中发布的信息,效果如愿。
我最近开始使用eclipse mars,发现一个非常恼人的问题。当我使用 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
最后,我使用了此 answer 中发布的信息,效果如愿。