Source Code Columnizer
Neaten your Source!
What Does It Do?
Whenever possible, I recommend lining up statements to increase readability in your source code. Check out this before/after example:
Before
var green_snake = "hiss"; var cat = "meow"; var grizzly_bear = "grr"; var ox = "grunt";
After
This the the above example after being columnized on the "=" character.
var green_snake = "hiss"; var cat = "meow"; var grizzly_bear = "grr"; var ox = "grunt";
Note: you can columnize on any string, so with a little creativity, you can usually coerce columns out of even the trickiest code.