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

后端 未结 5 1148
南方客
南方客 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条回答
  • 2021-01-30 03:18

    The keyboard shortcuts provided in the other answers did not work for me.
    You need to go to File -> Settings -> Editor -> File and Code Templates
    If you want to change the header you need to go to "Includes" tab

    The official docs

    0 讨论(0)
  • 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.

    0 讨论(0)
  • 2021-01-30 03:33

    In case, someone wondering about how to add the creation info when it's somehow missed (like in my case),

    0 讨论(0)
  • 2021-01-30 03:34

    In Intellij 14 it is in the File and Code Templates area of the settings dialog. There should be a tab called Includes and File Header in it. Remove all text on the right side.

    0 讨论(0)
  • 2021-01-30 03:35

    In IntelliJ 13 and above it is in the File and Code Templates area of the settings dialog. In Idea 15+ you can get there by typing ctrl+shift+A on windows or cmd+shift+A on osx and then typing Include Templates in the popup action search dialog. There should be a tab called Includes on which you will find the Java and ActionScript file types, and the text can simply be removed completely if you like.

    But, in more recent versions of IntelliJ things have got quite a bit easier. The first time it generates this stuff, put your cursor in the generated comments and hit alt-enter (or the equivalent according to your key-mapping preferences) to bring up the 'fix' options, and select 'edit template'. This will bring you right to the setting that needs to be updated. Simply remove all the text (or replace it with something more palatable to you), hit enter and you're done.

    0 讨论(0)
提交回复
热议问题