jawee / language-blade

Blade (Laravel) templating support in Atom
https://atom.io/packages/language-blade
Other
51 stars 21 forks source link

Improve indentation for multi-line statements #79

Open hillelcoren opened 7 years ago

hillelcoren commented 7 years ago

I'm having trouble getting auto-indentation to work correctly if a statement is more than one line.

<div class="row">

    {!! method()
        ->method() !!}

</div>

Indents to:

<div class="row">

    {!! method()
        ->method() !!}

    </div>

Original reference: #35