Cpp Comment GeneratorBriefThis extension is made to comment C++ functions in a specific format. So we can save that time for something greater. How To UseStep 1 : Locating your function
Step 2 : Do the comment
FeaturesIt works like another extension named "Add jsdoc comment" created by stevencl. Inspired by that I made to interpret most of the common function statements. The example below is the most complex situation I can (imagine and) settle :
and the result is
SettingscppComment.CompleteParamType = true -> @param {const int &} paraName = false -> @param {int} paraName cppComment.ShowParamType = true -> @param {const int &} paraName = false -> @param paraName Known IssuesIt only works for C++ files Ver 1.0.2Support for function pointers. Fix the problem of being unable to interpret "int *var". Ver 1.0.1Align comments to the function. Fix that "virtual" spelled as "vitual". Support for constructors and destructors Ver 1.0.0Initialize a version that can only serve the basic requirements. |