Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tend to align code on equal signs for better readability. From this:

$ = jQuery.sub()
Survey = App.Survey
Sidebar = App.Sidebar
Main = App.Main

To this:

$       = jQuery.sub()
Survey  = App.Survey
Sidebar = App.Sidebar
Main    = App.Main

Is there an easy way to do this in vim?

share|improve this question

2 Answers

up vote 9 down vote accepted

The best plugin I found so far is Tabular.vim.

Easiest way to install it is by using the Pathogen plugin, and then cloning the Tabular git repository to ~/.vim/bundle/tabular. Full instructions in the Pathogen README.

After it's installed, using it is just a matter of putting your cursor somewhere in the paragraph you want to align and running:

:Tab /=
share|improve this answer

I believe this is easily done with the Tablular plugin. Here it is in action.

Select the range in Visual mode (not actually necessary), and do:

:Tabularize /=

The plugin can actually find the correct range on its own often, without needing to select it visually or specify a range to the ex command.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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