Comments
Sort by recent activity
As far as I can tell, SQL Prompt 5 still doesn't have this feature? / comments
As far as I can tell, SQL Prompt 5 still doesn't have this feature?
This is what I want (comments treated as code for indent purposes):
-- comment
-- comment
if (@adjustment_type <> 1)
begin
-- comment
exec AP_Item_Burden_Bill
end
but this is what I get (comments untouched, left wherever they happened to be): -- comment
-- comment
if (@adjustment_type <> 1)
begin
-- comment
exec AP_Item_Burden_Bill
end
/ comments
This is what I want (comments treated as code for indent purposes):
-- comment
-- comment
if (@adjustment_type <> 1)
...