diff options
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/package.json b/package.json index 66e256c..a5d6658 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "doxdocgen", "displayName": "Doxygen Documentation Generator", "description": "Generate doxygen documentation from source code", - "version": "0.0.2", + "version": "0.0.3", "publisher": "cschlosser", "engines": { "vscode": "^1.16.0" @@ -13,6 +13,23 @@ "activationEvents": [ "onLanguage:cpp" ], + "contributes": { + "configuration": { + "type": "object", + "title": "Doxygen Documentation Generator Settings", + "properties": { + "doxdocgen.generic.commentStart": { + "description": "Doxygen comment start indicator. Default ist /** but Qt style with /*! is also valid.", + "type": "string", + "default": "/**", + "enum": [ + "/**", + "/*!" + ] + } + } + } + }, "icon": "images/icon.png", "keywords": [ "cpp", "c++", "c", "doxygen" |