In my settings I have Linebreak set on "Select\After Where" checked. Which seems to work except when there is an EXISTS clause immediately following the WHERE. I expected the EXITS to be on a newline.
For example:
select
foo
from
dbo.tablename
where exists
(
select
1
from
dbo.tablename2
)
