joeyjiron06 / intellij-auto-align

A code formatter intellij plugin
0 stars 2 forks source link

How to adjust the number of spaces before equals when formatting #12

Open junpayment opened 6 years ago

junpayment commented 6 years ago

Hello.

Sometimes I think that there are too many spaces before "=". Personally I want the function to adjust because I think that one space is enough.

my $hoge = "hoge";
my $fuga_fuga "fugafuga";

formatted

my $hoge         = "hoge";
my $fuga_fuga    = "fugafuga";

i want

my $hoge      = "hoge";
my $fuga_fuga = "fugafuga";