如果我有以下示例代码:
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;
}
如何使Sublime Text 2停止删除仅包含空格的行上的缩进?
如果可能的话,我仍然希望将其从包含空格以外的其他字符的行中删除。