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
![](https://secure.gravatar.com/avatar/693843676f07f2a7a0492877daf24f2d?size=40&default=https%3A%2F%2Fassets.uvcdn.com%2Fpkg%2Fadmin%2Ficons%2Fuser_70-6bcf9e08938533adb9bac95c3e487cb2a6d4a32f890ca6fdc82e3072e0ea0368.png)