Making Eclipse's Java code formatter ignore block comments

后端 未结 11 535
没有蜡笔的小新
没有蜡笔的小新 2020-12-04 13:20

Is there a way to make Eclipse\'s built-in Java code formatter ignore comments? Whenever I run it, it turns this:

    /*
     * PSEUDOCODE
     * Read in us         


        
11条回答
  •  佛祖请我去吃肉
    2020-12-04 13:47

    one workaround is to add pre tag for the comments that you don't want eclipse to format

    /**
     * 
     *    this part
     *   is
     *      out of
     *  format
     *    
     * 
    */

提交回复
热议问题