From cd9173c8027d7291e03fb716f79aff4e36222cc9 Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 30 Oct 2024 18:59:17 -0700 Subject: [PATCH 1/5] move ctrlk --- extensions/void/src/{common => extension}/ctrlK.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename extensions/void/src/{common => extension}/ctrlK.ts (95%) diff --git a/extensions/void/src/common/ctrlK.ts b/extensions/void/src/extension/ctrlK.ts similarity index 95% rename from extensions/void/src/common/ctrlK.ts rename to extensions/void/src/extension/ctrlK.ts index ab4feea8..63aaf200 100644 --- a/extensions/void/src/common/ctrlK.ts +++ b/extensions/void/src/extension/ctrlK.ts @@ -1,9 +1,9 @@ import * as vscode from 'vscode'; -import { AbortRef, OnFinalMessage, OnText, sendLLMMessage } from "./sendLLMMessage" +import { AbortRef, OnFinalMessage, OnText, sendLLMMessage } from "../common/sendLLMMessage" import { VoidConfig } from '../webviews/common/contextForConfig'; -import { searchDiffChunkInstructions, writeFileWithDiffInstructions } from './systemPrompts'; +import { searchDiffChunkInstructions, writeFileWithDiffInstructions } from '../common/systemPrompts'; import { throttle } from 'lodash'; -import { readFileContentOfUri } from '../extension/extensionLib/readFileContentOfUri'; +import { readFileContentOfUri } from './extensionLib/readFileContentOfUri'; type Res = ((value: T) => void) From 0ef8c66d5470bfa3ee16fb036c7f930d8573dfeb Mon Sep 17 00:00:00 2001 From: Andrew Pareles <43356051+andrewpareles@users.noreply.github.com> Date: Wed, 30 Oct 2024 19:01:56 -0700 Subject: [PATCH 2/5] simplify readme --- README.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a6bce407..c0a6ae93 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,16 @@ # Welcome to Void. +Void is the open-source Cursor alternative. This repo contains the full sourcecode for Void. We have a [waitlist](https://voideditor.com/email) for downloading the official release, but you can build and develop Void right now. -Void is the open-source Cursor alternative. - -If you're new, welcome! Feel free to check out our [Project board](https://github.com/orgs/voideditor/projects/2/views/3) for the most pressing Issues to work on, and see [`CONTRIBUTING.md`](https://github.com/voideditor/void/blob/main/CONTRIBUTING.md) for instructions on building and running Void. - -This repo contains the full sourcecode for Void. We have a [waitlist](https://voideditor.com/email) for downloading the official release, but you can build and develop Void right now. +If you're new, welcome! ## Contributing -To build and run Void, see [`CONTRIBUTING.md`](https://github.com/voideditor/void/blob/main/CONTRIBUTING.md). +To build and run Void, follow the steps in [`CONTRIBUTING.md`](https://github.com/voideditor/void/blob/main/CONTRIBUTING.md). ## Reference -Void is a fork of the of [vscode](https://github.com/microsoft/vscode) repository. - -For some useful links we've compiled see [`VOID_USEFUL_LINKS.md`](https://github.com/voideditor/void/blob/main/VOID_USEFUL_LINKS.md). - +Void is a fork of the of [vscode](https://github.com/microsoft/vscode) repository. For some useful links on VSCode, see [`VOID_USEFUL_LINKS.md`](https://github.com/voideditor/void/blob/main/VOID_USEFUL_LINKS.md). ## Support Feel free to reach out in our [Discord](https://discord.gg/RSNjgaugJs) or contact us via email. From 3526005e1c6cf5c82834a942102f04854ad5c4e8 Mon Sep 17 00:00:00 2001 From: Andrew Pareles <43356051+andrewpareles@users.noreply.github.com> Date: Wed, 30 Oct 2024 19:02:22 -0700 Subject: [PATCH 3/5] amend --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c0a6ae93..dc3ff7d4 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ If you're new, welcome! ## Contributing -To build and run Void, follow the steps in [`CONTRIBUTING.md`](https://github.com/voideditor/void/blob/main/CONTRIBUTING.md). +To build and run Void (or to contribute), follow the steps in [`CONTRIBUTING.md`](https://github.com/voideditor/void/blob/main/CONTRIBUTING.md). ## Reference From aab840db2df609fd835411d0379ece17a3608675 Mon Sep 17 00:00:00 2001 From: Andrew Pareles <43356051+andrewpareles@users.noreply.github.com> Date: Wed, 30 Oct 2024 19:02:48 -0700 Subject: [PATCH 4/5] amend --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dc3ff7d4..c0a6ae93 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ If you're new, welcome! ## Contributing -To build and run Void (or to contribute), follow the steps in [`CONTRIBUTING.md`](https://github.com/voideditor/void/blob/main/CONTRIBUTING.md). +To build and run Void, follow the steps in [`CONTRIBUTING.md`](https://github.com/voideditor/void/blob/main/CONTRIBUTING.md). ## Reference From 48d536919643a766322134305224677a4ee9177f Mon Sep 17 00:00:00 2001 From: Andrew Pareles <43356051+andrewpareles@users.noreply.github.com> Date: Wed, 30 Oct 2024 19:09:43 -0700 Subject: [PATCH 5/5] amend --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e493a282..afc17efb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -71,7 +71,7 @@ We haven't created prerequisite steps for building on Linux yet, but you can fol Before building Void, please follow the prerequisite steps above for your operating system. Also make sure you've already built the Void extension (or just run `cd ./extensions/void && npm install && npm run build && npm run compile && cd ../..`). -First, open `void/` in VSCode. Then: +To build Void, first open `void/` in VSCode. Then: 1. Install all dependencies.