idea: generally align most similar characters between lines
I like to vertically align all similar code, not just assignments. For example, this:
var home = document.getElementById('home');
var longerVariableName = document.getElementById('otherThing');
Changes to this:
var home = document.getElementById('home');
var longerVariableName = document.getElementById('otherThing');
There could be many scenarios where some some automatic vertical alignment would make the code much more awesome and readable
I know my example used assignments, I scanned briefly over some of my code and I couldn't find a good example of doing vertical alignment beyond assignments right away. Regardless, the idea is out there for discussion :)
The above code is much more readable because of all the shared characters on the right side of the assignment, = document.getElementById('
Could even be expanded to align the ending parens:
var home = document.getElementById('home' );
var longerVariableName = document.getElementById('otherThing');
Maybe you could edit the original example with the commented one, since the OP is probably how it behaves right now.