Turning off “created by” stamp when generating files in IntelliJ

后端 未结 5 1167
南方客
南方客 2021-01-30 02:32

I can\'t find an option for this. For example, when I create a new Scala class, this text is placed in the file:

/**
 * Created by ben on 6/23/14.
 */

5条回答
  •  猫巷女王i
    2021-01-30 03:24

    In case you want to remove all comments which have already been created. Hit Ctrl + Shift + R to open the Replace in path dialog. Check the Regex option and replace

    /\*\*\n \* Created by .*\n \*/
    

    with nothing.

提交回复
热议问题