+4
Clean up/remove extraneous tabs and spaces
It would be nice to have the possibility to quick clean up the code of extra tabs and spaces floating around. For example, consider a line of JavaScript:
var myVariable = 10; <--- extra spaces between ';' and '<' that can be removed
would be converted to
var myVariable = 10;<--- no extra spaces
Customer support service by UserEcho
You can use the trim_trailing_white_space_on_save to do this on save
What about tabs in front of...