Format Block Comments
As a developer, I would like options to format Block Comments.
Each of these would be check boxes to enable/disable the feature. The last two options would have a text input box at the end to allow the user to enter the character(s)
☑Insert empty line before block comments
☑Insert empty line after block comments
☑Add border above block comments using: *
☑Add border below block comments using: *
Before:
USE AdventureWorks2012
GO
/* First line of a multiple-line comment.
Second line of a multiple-line comment. */
SELECT * FROM HumanResources.Employee
SELECT * FROM Person.Address /*Single line comment*/
GO
After:
USE AdventureWorks2012
GO
/******************************************
First line of a multiple-line comment.
Second line of a multiple-line comment.
******************************************/
SELECT * FROM HumanResources.Employee
SELECT * FROM Person.Address
/******************
Single line comment
******************/
GO