driade / phpfmt8

PHP formatter for Sublime Text 4, with PHP 8 support.
BSD 3-Clause "New" or "Revised" License
46 stars 2 forks source link

Cannot align concatenation #77

Open karchung0930 opened 3 months ago

karchung0930 commented 3 months ago

Let's say I have the following:

$first = '1';
$longer .= '2';
$longer .= '23;

It cannot align vertically. The expected result is:

$first   = '1';
$longer .= '2';
$longer .= '23;
driade commented 3 months ago

Thanks, interesting case, I'll check if we can modify the AlignEquals rule to consider this case.