summaryrefslogtreecommitdiff
path: root/extension/src
diff options
context:
space:
mode:
Diffstat (limited to 'extension/src')
-rw-r--r--extension/src/README.md59
-rw-r--r--extension/src/activation/environmentSetup.ts1
-rw-r--r--extension/src/commands.ts9
3 files changed, 1 insertions, 68 deletions
diff --git a/extension/src/README.md b/extension/src/README.md
deleted file mode 100644
index ef90c31b..00000000
--- a/extension/src/README.md
+++ /dev/null
@@ -1,59 +0,0 @@
-# Continue VS Code Extension README
-
-## How to debug the VS Code Extension
-
-1. Clone the Continue repo
-
-2. Open a VS Code window with the `continue` directory as your workspace
-
-3. Package and then start the FastAPI server by following instructions outlined in the `Continue Server` section of the `continuedev/README.md`
-
-4. Open a VS Code window with the `extension` directory as your workspace
-
-5. From `continue/extension`, run `npm install`
-
-6. Run `npm run package`
-
-7. Open `src/activation/activate.ts` file (or any TypeScript file)
-
-8. Press `F5` on your keyboard to start `Run and Debug` mode
-
-9. `cmd+shift+p` to look at developer console and select Continue commands
-
-10. Every time you make changes to the code, you need to run `npm run esbuild` unless you make changes inside of `react-app` and then you need to run `npm run build` from there
-
-## Alternative: Install from source
-
-Update: directions to root README
-
-## Background
-
-- `src/bridge.ts`: connects this VS Code Extension to our Python backend that interacts with GPT-3
-- `src/debugPanel.ts`: contains the HTML for the full window on the right (used for investigation)
-- `src/DebugViewProvider.ts`: contains the HTML for the bottom left panel
-- `src/extension.ts`: entry point into the extension, where all of the commands / views are registered (activate function is what happens when you start extension)
-- `media/main.js`: handles messages sent from the extension to the webview (bottom left)
-- `media/debugPanel.js`: loaded by right window
-
-## Features
-
-- `List 10 things that might be wrong` button
-- `Write a unit test to reproduce bug` button
-- Highlight a code range + `Find Suspicious Code` button
-- `Suggest Fix` button
-- A fix suggestion shown to you + `Make Edit` button
-- Write a docstring for the current function
-- Ask a question about your codebase
-- Move up / down to the closest suggestion
-
-## Commands
-
-- "Write a docstring for the current function" command (windows: `ctrl+alt+l`, mac: `shift+cmd+l`)
-- "Open Continue GUI" command
-- "Ask a question from input box" command (windows: `ctrl+alt+j`, mac: `shift+cmd+j`)
-- "Open Captured Terminal" command
-- "Ask a question from webview" command (what context is it given?)
-- "Create Terminal" command ???
-- "Suggestion Down" command (windows: `shift+ctrl+down`, mac: `shift+ctrl+down`)
-- "Suggestion Up" command (windows: `shift+ctrl+up`, mac: `shift+ctrl+up`)
-- "Accept Suggestion" command (windows: `shift+ctrl+enter`, mac: `shift+ctrl+enter`)
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts
index 1ca32841..3c8220c0 100644
--- a/extension/src/activation/environmentSetup.ts
+++ b/extension/src/activation/environmentSetup.ts
@@ -252,6 +252,7 @@ export async function startContinuePythonServer() {
});
child.unref();
} catch (e: any) {
+ console.log("Error starting server:", e);
retry();
}
};
diff --git a/extension/src/commands.ts b/extension/src/commands.ts
index cf6892f2..ea12699e 100644
--- a/extension/src/commands.ts
+++ b/extension/src/commands.ts
@@ -1,17 +1,8 @@
import * as vscode from "vscode";
import * as path from "path";
import * as os from "os";
-import {
- acceptSuggestionCommand,
- rejectSuggestionCommand,
- suggestionDownCommand,
- suggestionUpCommand,
- acceptAllSuggestionsCommand,
- rejectAllSuggestionsCommand,
-} from "./suggestions";
import { acceptDiffCommand, rejectDiffCommand } from "./diffs";
-import * as bridge from "./bridge";
import { debugPanelWebview } from "./debugPanel";
import { ideProtocolClient } from "./activation/activate";