Remove trailing whitespace on save in IntelliJ IDEA 12

前端 未结 4 1426
梦谈多话
梦谈多话 2021-02-02 04:52

Is it possible to remove trailing whitespace automatically on save in IntelliJ IDEA? I know there are some workarounds, for example, using git to trim the whitespace on commit.

相关标签:
4条回答
  • 2021-02-02 05:19

    Go to ==> PREFERENCES | GENERAL | OTHER |

    Just as shown in the picture:

    1. Srip trailings spaces on Save: ALL
    2. Uncheck Allways keep....

    It'll remove trailing spaces when save, not before

    0 讨论(0)
  • 2021-02-02 05:34

    Don't know about 12, but there's the following setting in 13:

    Settings → Editor → Strip trailing spaces on Save

    As of IntelliJ 2017.2 it's under

    Settings → Editor → General → Strip trailing spaces on Save

    configuration dialogue

    0 讨论(0)
  • 2021-02-02 05:36

    Add an external tool. As the Program pass /usr/bin/sed (may be different on your box, run which sed to locate) and insert the -i 's/[[:space:]]\+$//' $FilePath$ in the Parameters. Overall the command that you want IntelliJ to run is,

    /usr/bin/sed -i 's/[[:space:]]\+$//' <your current file>
    

    This sed will remove the trailing whitespace, and overall the effect will be very similar to git. Next you can add a keyboard shortcut for your new external tool entry, but I am not sure whether it is possible to run anything on save.

    0 讨论(0)
  • 2021-02-02 05:38

    In 2020.1 IntelliJ version:

    File -> Settings -> Editor -> General -> then scroll down to 'Save Files'

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