+4

Clean up/remove extraneous tabs and spaces

Justin Drake 13 jaar geleden bijgewerkt door Caribbean Diving 11 jaar geleden 2
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
+1

You can use the trim_trailing_white_space_on_save to do this on save

+2

What about tabs in front of...