I am not sure if this is a bug or I am just not understanding the setting, but when using the "Columns per Line in IN list" I am only having the first line format multiple values on one line, then it reverts to a list
Original code
SELECT
count(*)
FROM table
WHERE 1=1
AND column IN ('one', 'two', 'three', 'four', 'five', 'six', 'seven')
;
Formatted code
SELECT
COUNT(*)
FROM TABLE
WHERE
1=1
AND column IN ('one','two','three'
, 'four'
, 'five'
, 'six'
, 'seven')
;
What I would expect
SELECT
COUNT(*)
FROM TABLE
WHERE
1=1
AND column IN ('one','two','three'
, 'four', 'five', 'six'
, 'seven')
;
This issue has been solved in the new Release