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,707
  • 5
  • 20
  • 36

1 Answers1

0

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

elmart
  • 2,204
  • 14
  • 17