JordyvD
JordyvD

Reputation: 1615

Sublime text nice indents

Is there a plugin or built in function that changes

'test' => $test,
'test123' => $test123,
'something_else' => $something_else

to

'test'           => $test,
'test123'        => $test123,
'something_else' => $something_else

?

Upvotes: 1

Views: 53

Answers (2)

idleberg
idleberg

Reputation: 12882

There are several alignment plugins available on Package Control, my personal favourite is AlignTab.

Upvotes: 2

You can select code that you need format

Edit-> Line -> Reintend

But This is not more accurate

Upvotes: -1

Related Questions