From 16913e96e52197c4bc80b760d0fdc2f9142eac16 Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Wed, 16 Apr 2025 23:44:24 -0700 Subject: [PATCH 1/2] prompt --- src/vs/workbench/contrib/void/common/prompt/prompts.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/void/common/prompt/prompts.ts b/src/vs/workbench/contrib/void/common/prompt/prompts.ts index 312521cb..964ad598 100644 --- a/src/vs/workbench/contrib/void/common/prompt/prompts.ts +++ b/src/vs/workbench/contrib/void/common/prompt/prompts.ts @@ -457,8 +457,9 @@ ${DIVIDER} ${FINAL} ${tripleTick[1]} -You will be given the original file \`ORIGINAL_FILE\` and a description of a change \`CHANGE\` to make. +You will be given the original file \`ORIGINAL_FILE\` and a diff to apply to the file, \`CHANGE\`. Output SEARCH/REPLACE blocks to edit the file according to the desired change. You may output multiple SEARCH/REPLACE blocks. +Be sure to output a change for every single item that changed from the original file to the given change, including comments. Directions: 1. Your OUTPUT should consist ONLY of SEARCH/REPLACE blocks. Do NOT output any text or explanations before or after this. From 6141351e1596c0935faeee74258c8a64644362b2 Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Thu, 17 Apr 2025 17:21:53 -0700 Subject: [PATCH 2/2] issue template --- .github/issue_template.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/issue_template.md diff --git a/.github/issue_template.md b/.github/issue_template.md new file mode 100644 index 00000000..232373d8 --- /dev/null +++ b/.github/issue_template.md @@ -0,0 +1,35 @@ +--- +name: Pull Request +about: Submit a pull request to Void +title: '' +labels: '' +assignees: '' +--- + +**Please provide the following information before submitting:** + +* **Operating System Information:** + * Press `Ctrl+Shift+P` (or `Cmd+Shift+P` on macOS). + * Type `> Help: About`. + * Copy the full version and OS information shown and paste it below: + ``` + (Paste OS Information Here) + ``` + +**Pull Request Title Convention:** + +* For **new features** or feature requests, please start the title with `[Feature]`. Example: `[Feature] Add user login functionality` +* For **bugs**, please start the title with `[Bug]`. Example: `[Bug] Fix alignment issue on settings page` +* For **other types of changes** (e.g., documentation, refactoring, chores), use a descriptive title without a specific prefix or choose an appropriate one (e.g., `[Docs]`, `[Refactor]`). + +**Description of Changes:** + +Tell us a bit about what you did. We prefer concise descriptions :) + +**Related Issue(s):** + +If this issue is related to any PRs, please link them here (or vice versa). + +**Checklist:** +* [ ] I have read the **CONTRIBUTING.md** document. +* [ ] The title of this PR follows the specified convention.