vote up 3 vote down star
1

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?

flag

80% accept rate
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
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
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

4 Answers

vote up 9 vote down check

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|flag
vote up 1 vote down

The Align plugin does this and much more.

link|flag
vote up 1 vote down

Try the align plugin.

It's described here...

link|flag
vote up 0 vote down

Just note that this goes against style guidelines ;)

link|flag

Your Answer

Get an OpenID
or

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