Skip to content

Commit 607ce43

Browse files
committed
Fix #839: Prefix review-comment commands with "Codev:"
Two contributes.commands entries in packages/vscode/package.json were missing the "Codev:" prefix used by every other declared command, making them look like they came from a different extension in the VS Code Feature Contributions tab. - codev.submitReviewComment: "Submit review comment" -> "Codev: Submit Review Comment" - codev.deleteReviewComment: "Delete review comment" -> "Codev: Delete Review Comment" All 40 entries on the Feature Contributions command list now start with "Codev:".
1 parent 4de85c4 commit 607ce43

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/vscode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,12 +211,12 @@
211211
},
212212
{
213213
"command": "codev.submitReviewComment",
214-
"title": "Submit review comment",
214+
"title": "Codev: Submit Review Comment",
215215
"enablement": "!commentIsEmpty"
216216
},
217217
{
218218
"command": "codev.deleteReviewComment",
219-
"title": "Delete review comment",
219+
"title": "Codev: Delete Review Comment",
220220
"icon": "$(trash)"
221221
}
222222
],

0 commit comments

Comments
 (0)