up vote 6 down vote favorite
1
share [g+] share [fb]

I would like to automatically align lines of python variable assignments in vim.

For example I would like to change this:

a = 1
banana = 2

into this

a      = 1
banana = 2

automatically in vim.

Is there a way to do this?

link|improve this question

1  
I'd like to mention that PEP 8 (python.org/dev/peps/pep-0008) explicitly discourages this kind of formatting. – Joachim Sauer Dec 10 '08 at 22:34
1  
More importantly, is there a reason for doing this? What's all the extra whitespace for? – S.Lott Dec 10 '08 at 22:40
saua, noted thanks! S.Lott, it's mostly because it is easier for me to read. – Paul D. Eden Dec 10 '08 at 22:41
How so? Seriously. What's the benefit? Don't you find that things get confused with the lines of code above or below? – S.Lott Dec 10 '08 at 22:42
1  
I agree with Mr. Eden here. I even indent "from x import y"'s! It reads better and looks neater, IMHO. – Walter Dec 11 '08 at 19:58
feedback

4 Answers

up vote 12 down vote accepted

You are probably looking for the Align plugin for vim:

http://www.vim.org/scripts/script.php?script_id=294

Once installed, you simply select the text you want to align (Shift V) and type:

:Align =

This will align the text based on the = character, so you can use anything you want really.

Hope that helps!

link|improve this answer
feedback

The Align plugin does this and much more.

link|improve this answer
feedback

Try the align plugin.

It's described here...

link|improve this answer
feedback

Just note that this goes against style guidelines ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.