Skip to content

Commit 8c4ddcf

Browse files
authored
Merge pull request #38 from innocenzi/fix/update-contributions
chore(contributions): respect vscode standards
2 parents 3bbe056 + ca63ed6 commit 8c4ddcf

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

package.json

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,42 +28,47 @@
2828
"commands": [
2929
{
3030
"command": "phpactor.update",
31-
"title": "Update Phpactor to the latest version"
31+
"title": "Update to the latest version",
32+
"category": "Phpactor"
3233
},
3334
{
3435
"command": "phpactor.reindex",
35-
"title": "Phpactor: Reindex the project."
36+
"title": "Re-index workspace",
37+
"category": "Phpactor"
3638
},
3739
{
3840
"command": "phpactor.config.dump",
39-
"title": "Phpactor: Dump config"
41+
"title": "Dump the configuration",
42+
"category": "Phpactor"
4043
},
4144
{
4245
"command": "phpactor.services.list",
43-
"title": "Phpactor: List Phpactor's currently running services."
46+
"title": "List currently running services",
47+
"category": "Phpactor"
4448
},
4549
{
4650
"command": "phpactor.status",
47-
"title": "Phpactor: Show Phpactor's status"
51+
"title": "Show current status",
52+
"category": "Phpactor"
4853
}
4954
],
5055
"configuration": {
51-
"title": "phpactor config",
56+
"title": "Phpactor",
5257
"properties": {
5358
"phpactor.path": {
54-
"type": "string|null",
59+
"type": ["string", "null"],
5560
"default": null,
56-
"description": "phpactor bin path"
61+
"description": "Specifies the path to the Phpactor binary"
5762
},
5863
"phpactor.enable": {
5964
"type": "boolean",
6065
"default": true,
61-
"description": "enable phpactor language server"
66+
"description": "Whether to enable the language server"
6267
},
6368
"phpactor.config": {
6469
"type": "object",
6570
"default": {},
66-
"description": "standard phpactor configuration"
71+
"description": "Specifies the underlying Phpactor configuration."
6772
}
6873
}
6974
}

0 commit comments

Comments
 (0)