LuaFormatter icon indicating copy to clipboard operation
LuaFormatter copied to clipboard

Spaces inside expression parens

Open macias0 opened this issue 4 years ago • 0 comments

Current:

function PosToAbsolute( x, y, tileSize )
    return (x - 1) * tileSize, (y - 1) * tileSize
end

Expected:

function PosToAbsolute( x, y, tileSize )
    return ( x - 1 ) * tileSize, ( y - 1 ) * tileSize
end

It would be nice to have such option.

macias0 avatar Jul 16 '21 08:07 macias0