Align Assignments in TextMate
This is a cool feature that I didn’t realize TextMate had until today. Say you have a series of assigmnents like this:
var administrator = "Dave";
var guest = "Matt";
var blocked = "Tim";And you want to have all of the assignments aligned. Select the code and hit Apple + Option + ]. It will automatically align the statements like this:
var administrator = "Dave";
var guest = "Matt";
var blocked = "Tim";
I love you TextMate.
October 27th, 2007 at 4:34 pm
This just encourages people to be lazy you should be doing that anyways.
October 27th, 2007 at 4:35 pm
vi4ever
November 20th, 2008 at 2:27 pm
I love this function, hated it at first.