diff options
| author | Christoph Schlosser <christoph@linux.com> | 2018-03-02 17:02:02 +0100 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2018-03-02 20:24:28 +0100 |
| commit | f062b00a6ca2a5f42eb376b178735b766832bbcb (patch) | |
| tree | 2879fb8b19e8b6573a680498ab9cfe3d4edb7af5 /package.json | |
| parent | 5368c8151df632ba0ebd863cbc7ff105dc4027bf (diff) | |
| download | doxdocgen-f062b00a6ca2a5f42eb376b178735b766832bbcb.tar.gz | |
Add more smart text
- Getter
- Setter
- Factory method
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package.json b/package.json index a8eda70..cb5db10 100644 --- a/package.json +++ b/package.json @@ -56,6 +56,21 @@ "type": "string", "default": " */" }, + "doxdocgen.c.setterText": { + "description": "Smart text snippet for setters.", + "type": "string", + "default": "Set the {name} object" + }, + "doxdocgen.c.getterText": { + "description": "Smart text snippet for getters.", + "type": "string", + "default": "Get the {name} object" + }, + "doxdocgen.c.factoryMethodText": { + "description": "Smart text snippet for factory methods/functions.", + "type": "string", + "default": "Create a {name} object" + }, "doxdocgen.cpp.newLineAfterTParams": { "description": "Whether to insert a newline after the template params.", "type": "boolean", @@ -145,6 +160,11 @@ "description": "Decide if you want to get smart text for certain commands.", "type": "boolean", "default": true + }, + "doxdocgen.generic.splitCasingSmartText": { + "description": "Decide if the values put into {name} should be split according to their casing.", + "type": "boolean", + "default": true } } } |