Skip to content

Commit 2e06f7c

Browse files
committed
Update extension version and refine default instructions for commit messages and edit formats
1 parent 4add766 commit 2e06f7c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

packages/vscode/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gemini-coder",
33
"displayName": "Code Web Chat",
44
"description": "Superfast AI coding (CWC)",
5-
"version": "1.626.0",
5+
"version": "1.627.0",
66
"scripts": {
77
"build": "npx vsce package --no-dependencies",
88
"vscode:prepublish": "rimraf out && npm run compile",
@@ -536,7 +536,7 @@
536536
"type": "string",
537537
"scope": "resource",
538538
"description": "Style and conventions (e.g. Conventional Commits, gitmoji) for generated commit messages.",
539-
"default": "Write a brief and precise summary for the changes, limited to a single sentence if possible and nothing else. Use an imperative tone to ensure clarity and focus on the primary change or purpose."
539+
"default": "Write a brief and precise summary for the changes, limited to a single sentence, if possible and nothing else. Use an imperative tone to ensure clarity and focus on the primary change or purpose."
540540
},
541541
"codeWebChat.commitMessageAutoAcceptAfter": {
542542
"type": "number",
@@ -578,8 +578,8 @@
578578
"scope": "resource",
579579
"description": "Style of generated code blocks in \"Edit context\" mode.",
580580
"default": {
581-
"whole": "Whenever showing a new or updated file, provide brief explanation, then print path in a markdown heading (e.g. ### File: `src/index.ts`), followed by a markdown code block with full contents—as I have a disability which means I can't type and need to be able to just copy and paste.",
582-
"truncated": "Whenever showing a new or updated file, provide brief explanation, then print path in a markdown heading (e.g. ### File: `src/index.ts`), followed by a markdown code block with truncated contents—as a space saving measure (unchanged parts should be hidden behind ellipsis comments, e.g. \"// ...\").",
581+
"whole": "Whenever showing a new or updated file, provide brief explanation, then print path in a markdown heading (e.g. ### New file `src/index.ts`, ### Updated file: `src/index.ts`), followed by a markdown code block with full contents—as I have a disability which means I can't type and need to be able to just copy and paste.",
582+
"truncated": "Whenever showing a new or updated file, provide brief explanation, then print path in a markdown heading (e.g. ### New file: `src/index.ts`, ### Updated file: `src/index.ts`), followed by a markdown code block with truncated contents—as a space saving measure unchanged parts should be hidden behind ellipsis comments, e.g. \"// ...\".",
583583
"diff": "Whenever showing a new or updated file, provide brief explanation and print the Unified Diff within a markdown code block. Example: \nThe count variable has been incremented.\n```diff\n--- a/file.py\n+++ b/file.py\n@@ -2,1 +2,1 @@\n-count = 10\n+count = 20\n```"
584584
},
585585
"properties": {

0 commit comments

Comments
 (0)