s-a/sublime-text-refactor

Multiple to single var definition

Opened this issue · 0 comments

Hello,

Can you add a feature to replace multiple var definitions with single one and viceversa?
Something like this

var name = 'John';
var address = '27th Street 123';
var phone = '123123123';

to this

var name = 'John',
   address = '27th Street 123',
   phone = '123123123';

Thanks!