Reputation: 1074
I'm using TextWrangler and I can't find a good code formatter. I tried TextMate and it ruined my code completely.
I don't care about anything else other than a button that formats the text. From this:
function hello() {
if ($statement) {
die();
}
}
To this:
function hello() {
if ($statement) {
die();
}
}
Without having to press "Tab" 4 times.
Upvotes: -8
Views: 103