If I have this sample code:
function foo() { var bar = 1; var foo = 1; // These two lines will be indented on save, // however the following line will have it's indention removed: return foo + bar; } How can I make Sublime Text 2 stop removing the indention on lines only containing whitespace?
If possible I would still like it to remove it from lines which contains other characters than whitespace.