Stop Eclipse from mangling my comments

前端 未结 5 1571
臣服心动
臣服心动 2020-12-29 23:53

Is there a way to stop eclipse from mangling the comments in my source files?

My main issue is stopping it from word wrapping them. I\'ve managed to configure eclips

5条回答
  •  萌比男神i
    2020-12-30 00:28

    There is another solution that you can use to suppress the formatting of specific block comments. Use /*- (note the hyphen) at the beginning of the block comment, and the formatting won't be affected if you format the rest of the file.

    /*-
     * Here is a block comment with some very special
     * formatting that I want indent(1) to ignore.
     *
     *    one
     *        two
     *            three
     */
    

    Source: http://www.oracle.com/technetwork/java/javase/documentation/codeconventions-141999.html#680

提交回复
热议问题