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. 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. 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)