I have a problem with the bracket linebreak config in vscore plugin, Is anyone know that how to solve it? Thanks
As the settings of bracket (none actived) and white spaces (Oneinside Around Brackets):
The original query in mysql:
SELECT COUNT( A ) , SUM( IF( A = 1,1,0 ) ) AS 'a' -- a FROM ...
I suprose that It should be formated like: ( no linebreak after "SUM(" ,and no white space after "IF")
SELECT
COUNT( A )
, SUM( IF( A = 1,1,0 ) ) AS 'a' -- a
FROM
...
But it's formated as below: ( add a linebreak after "SUM(" ,and add a white space after "IF")
SELECT
COUNT( A )
, SUM(
IF ( A = 1,1,0 ) ) AS 'a' -- a
FROM
...


