diff --git a/package.json b/package.json index 5f24443..2e87414 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,28 @@ "key": "ctrl+alt+n", "mac": "cmd+alt+n", "when": "editorTextFocus" - }] + }], + + "configuration": { + "title": "Insert Numbers Configuration", + "properties": { + "insertnum.formatstr": { + "type": "string", + "default": "%d", + "description": "Format string for sprintf" + }, + "insertnum.start": { + "type": "number", + "default": 0, + "description": "Start number" + }, + "insertnum.step": { + "type": "number", + "default": 1, + "description": "Step" + } + } + } }, "scripts": { "vscode:prepublish": "node ./node_modules/vscode/bin/compile", @@ -51,4 +72,4 @@ "typescript": "^1.8.5", "vscode": "^0.11.0" } -} \ No newline at end of file +}