+5
Completed

Trim lines at the time of saving file

Vinay Jeurkar 13 years ago in Plugin announcements updated by Jon Skinner 13 years ago 2

You can put an ON / OFF option which will decide wheather to trim white spaces or not from each line in currently opened file at the time of  saving the file.
Or you can ask user to specify characters to be trimmed at the end of the line in your Default File Preferences
e.g. 
//set to true if you want to trim lines for white spaces at the time of saving file.
"trim_on_save": true,
//specify charaters to trim. It will trim if trim_on_save option is true.
"trim_characters": " \t",

Answer

Answer
Completed
The trim_trailing_white_space_on_save setting can be used for this
Above feature will help to reduce size of the file occupied by unwanted characters.
Answer
Completed
The trim_trailing_white_space_on_save setting can be used for this
Ohh!! My bad... Thank you for bringing this setting to my notice!!