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

Long if statement doesn't break

Open macias0 opened this issue 4 years ago • 0 comments

Current output:

if variable == some.nested.object and variable2 == another.object or variable == another.object and variable2 == some.nested.object then return end

Expected something like that:

if variable == some.nested.object and variable2 == another.object or
    variable == another.object and variable2 == some.nested.object then 
	return 
end

macias0 avatar Jul 14 '21 12:07 macias0