0
$a => 'a';
$bbbbb => 'b';
$cc => 'cccccc';

Is there any solution in Vim to make the structure like

$a     => 'a';
$bbbbb => 'b';
$cc    => 'cccccc';
Chan
  • 1,947
  • 6
  • 25
  • 37

1 Answers1

0

See Vim's tabular plugin.
Tabular plugin at GitHub
Vimcast's screencast showing basic usage

elmart
  • 2,324
  • 15
  • 17
  • If my answer was helpful and solved your problem, please mark it as accepted. See `help` link at the top for site usage instructions. – elmart Aug 30 '13 at 15:22