I wonder why in sublime text 2 the switch case does not indent properly?
Normal I like this:
switch () {
case '...':
.........;
.........;
break;
.....
}
But in sublime text 2 it's like:
switch () {
case '...':
.........;
.........;
break;
.....
}
How can we fix this. And one more question: How can I specify which tags/sub-tags in HTML do not indent?
like
<html>
<head>
</head>
<body>
<div>
</div>
</body>
In sublime text, the <div> in <body> tag is indented, while I don't want that.