Hi, just installed latest Dev build to try out Sublime Text. So far it’s looking great!
Had 1 question (for now) about CSS bracket indentation.
Is it possible to change how they auto-ident?
Right now, this is the default behavior:
#navigation {
display:block;
}
I’d like the closing bracket to have a tab in front, so my css can looks like this, without having to add a tab in front of the } myself everytime.
#navigation {
display:block;
}
#navigation ul {
display:inline-block;
}
#navigation li {
float:left;
}
Took me a while to figure out how to use this, since I’ve only been used ST2 for a few hours, but it works fine. I’ve changed the key from alt+enter to enter since I always want it to behave this way for CSS. I was just wondering if that could cause any problems with other code (html or php for example)? Or does this apply to CSS only?