The goal of this application is to provide a few features for salesforce developers.
This extention is still in development please contribute. Github Repo, Happy coding...
Features
Current
Format document
To trigger use the default format document command
Automatic comment addeder
For Class
Select the whole class and ctrl + shift + p then execute Add Comments (Apex Helper) command OR Right Click and select Add Comments (Apex Helper)
This will add a comment like this at the top of the class
/**
* @description add your description here
* @Date current date
*/
For method
Select the whole method and ctrl + shift + p then execute Add Comments (Apex Helper) command OR Right Click and select Add Comments (Apex Helper)
This will add a comment like this at the top of the method
/**
* @description add your description here
* @Date current date
* @param Date birthDate
* @param String subsidiary
* @return String Returns null if age is valid
*/