Remove Trailing Spaces on Save in Sublime Text 2

Ever wondered how to get rid of the trailing spaces?

just add this to your user settings ( cmd + , ):


 "trim_trailing_white_space_on_save": true


And every time you save a file Sublime will trim all the trailing spaces for you.



If you haven´t seen whitespaces yet, you should add this package: https://github.com/SublimeText/TrailingSpaces and add these lines:


 "trailing_spaces_highlight_color": "invalid",

"trailing_spaces_file_max_size": 1000,

mvbehr Over 11 years ago