I see the product still has that irritating behavior of inserting a space in front of every semicolon. Is there any way to turn off this behavior? If not, can the development team please give us a way to turn off this behavior?
Here's an example:
-- Unformatted code
declare @table_name varchar(50);
declare @code_field varchar(50);
declare @desc_field varchar(150);
declare @this_code varchar(50);
-- Formatted code
DECLARE @table_name VARCHAR(50) ;
DECLARE @code_field VARCHAR(50) ;
DECLARE @desc_field VARCHAR(150) ;
DECLARE @this_code VARCHAR(50) ;
Here's an example: