summaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2017-10-09 21:15:00 +0200
committerChristoph Schlosser <christophschlosser@users.noreply.github.com>2017-10-09 21:48:19 +0200
commitf1f1b62073a36df8e2e2f08fd343ebdaab77ed82 (patch)
tree53fddac46fefa91e46b50b4863fbaff7d82a8251 /package.json
parent922d75bcc24f16f817d8ab3f11d43a4edffb1f9f (diff)
downloaddoxdocgen-0.0.3.tar.gz
Add option to choose Qt style comment start0.0.3
Diffstat (limited to 'package.json')
-rw-r--r--package.json19
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"