From ca63ed6f8bc15b1e4ec34c1927f658dd558fd405 Mon Sep 17 00:00:00 2001 From: Enzo Innocenzi Date: Sun, 17 Jul 2022 11:18:54 +0200 Subject: [PATCH] chore(contributions): respect vscode standards --- package.json | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 452154d..f364b9b 100644 --- a/package.json +++ b/package.json @@ -28,42 +28,47 @@ "commands": [ { "command": "phpactor.update", - "title": "Update Phpactor to the latest version" + "title": "Update to the latest version", + "category": "Phpactor" }, { "command": "phpactor.reindex", - "title": "Phpactor: Reindex the project." + "title": "Re-index workspace", + "category": "Phpactor" }, { "command": "phpactor.config.dump", - "title": "Phpactor: Dump config" + "title": "Dump the configuration", + "category": "Phpactor" }, { "command": "phpactor.services.list", - "title": "Phpactor: List Phpactor's currently running services." + "title": "List currently running services", + "category": "Phpactor" }, { "command": "phpactor.status", - "title": "Phpactor: Show Phpactor's status" + "title": "Show current status", + "category": "Phpactor" } ], "configuration": { - "title": "phpactor config", + "title": "Phpactor", "properties": { "phpactor.path": { - "type": "string|null", + "type": ["string", "null"], "default": null, - "description": "phpactor bin path" + "description": "Specifies the path to the Phpactor binary" }, "phpactor.enable": { "type": "boolean", "default": true, - "description": "enable phpactor language server" + "description": "Whether to enable the language server" }, "phpactor.config": { "type": "object", "default": {}, - "description": "standard phpactor configuration" + "description": "Specifies the underlying Phpactor configuration." } } }