0
In Sublime, when you hit return, it auto-indents the new line, according to syntax. However, if I hit return more than once, going multiple lines down, the previous lines do not remain indented. They have no indentation at all, and if I wish to go back to them to add something, I have to manually indent them.
Sometimes I like to have some white space in my code for aesthetic reasons. Is there a solution to this? Some other editors leave the lines indented in this use case.
I have a hunch this is by design, as to not waste space with "unused" indents in source code. Then again, it could be a bug.. – Kristian – 2015-01-27T23:17:24.190
I figured it out. It's the setting "trim_automatic_white_space". Enabled by default, and setting it to false creates the behavior I want. :) – Marcus Plimsoll – 2015-01-28T00:07:30.100