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.
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:]]\+$//'
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.