plugin-lua icon indicating copy to clipboard operation
plugin-lua copied to clipboard

Don't break local statement initializer onto next line

Open SpiralP opened this issue 7 years ago • 0 comments

current output

local variable =
	call_something_that_is_kind_of_long(with_some_long, arguments_that_are_long)

expected output

local variable = call_something_that_is_kind_of_long(
	with_some_long,
	arguments_that_are_long
)

SpiralP avatar Jul 31 '18 06:07 SpiralP