Skip to content

Commit a02eb24

Browse files
committed
chore(bugfix-839): builder thread
1 parent 607ce43 commit a02eb24

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

codev/state/bugfix-839_thread.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# bugfix-839 thread
2+
3+
## Investigate
4+
5+
Issue #839: two `contributes.commands` entries in `packages/vscode/package.json` are missing the `Codev:` prefix that every other command uses.
6+
7+
Located the two entries at `packages/vscode/package.json:213-220`:
8+
9+
- `codev.submitReviewComment``"Submit review comment"`
10+
- `codev.deleteReviewComment``"Delete review comment"`
11+
12+
Grep for these strings across `packages/vscode/` finds them only in `package.json` — no other code/docs reference the title text, so renaming is safe (commands are referenced by their internal id, not the title).
13+
14+
Fix: title-case to match the rest of the command set:
15+
- `Codev: Submit Review Comment`
16+
- `Codev: Delete Review Comment`
17+
18+
Net diff: 2 lines.
19+
20+
No regression test possible/needed — this is a static `package.json` manifest entry surfaced by VS Code's marketplace UI. There is no runtime path to assert against; the only "test" is reading the JSON. Will note this in the review.

0 commit comments

Comments
 (0)