$a => 'a';
$bbbbb => 'b';
$cc => 'cccccc';
Is there any solution in Vim to make the structure like
$a => 'a';
$bbbbb => 'b';
$cc => 'cccccc';
$a => 'a';
$bbbbb => 'b';
$cc => 'cccccc';
Is there any solution in Vim to make the structure like
$a => 'a';
$bbbbb => 'b';
$cc => 'cccccc';
See Vim's tabular plugin.
Tabular plugin at GitHub
Vimcast's screencast showing basic usage