+22
Better indentation support
Sublimetext2 should have better indentation support, for example when you want to format your code following PEP8 for python you see a lot of places where sublime indents wrong and you have to manually align. One such places is aligning multiple arguments of a function call each line should start after the last open ( and not at the same indentation level of the previous line)
Kundesupport af UserEcho
Naturally that level of indentation automation wouldn't work with Python, but writing braced languages would be a breeze, and argument indentation would still work with Python as well.
There is a setting called "indent_to_bracket" which provides the mentioned "(" alignment behaviour.
Other than that I never really had problems with how indenting works except for "[\n" where I managed it to make it do the same as for "{\n".
The trouble with indent_to_bracket is that it's only desirable sometimes -- sometimes you want the behavior where you double-indent the second line instead. Both are appropriate according to PEP-8, in some contexts.
It would be really handy to be able to define indentation rules for a particular language, via plugin.