language-blade icon indicating copy to clipboard operation
language-blade copied to clipboard

Improve indentation for multi-line statements

Open hillelcoren opened this issue 7 years ago • 0 comments

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

hillelcoren avatar Nov 02 '17 11:11 hillelcoren