diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-03 19:34:33 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-03 19:34:33 -0700 |
commit | 97f477e4dd64165738a6beab74edf09ef355a55a (patch) | |
tree | 352ebe3e0bd37a53f54732184b507334f531430c /extension/DEV_README.md | |
parent | a37550d5acc0c79efd18c80d9be3dcb3999dd4e9 (diff) | |
download | sncontinue-97f477e4dd64165738a6beab74edf09ef355a55a.tar.gz sncontinue-97f477e4dd64165738a6beab74edf09ef355a55a.tar.bz2 sncontinue-97f477e4dd64165738a6beab74edf09ef355a55a.zip |
fix python version on windows, other bugs, jest
Diffstat (limited to 'extension/DEV_README.md')
-rw-r--r-- | extension/DEV_README.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/extension/DEV_README.md b/extension/DEV_README.md index cf168cb3..c247b82c 100644 --- a/extension/DEV_README.md +++ b/extension/DEV_README.md @@ -7,3 +7,7 @@ This is the Continue VS Code Extension. Its primary jobs are 3. Run a Continue server in the background, which connects to both the IDE protocol and the React app. The server is launched in `src/activation/environmentSetup.ts` by calling Python code that lives in `scripts/` (unless extension settings define a server URL other than localhost:65432, in which case the extension will just connect to that). 4. Open Continue + +# Notes + +- We require vscode engine `^1.67.0` and use `@types/vscode` version `1.67.0` because this is the earliest version that doesn't break any of the APIs we are using. If you go back to `1.66.0`, then it will break `vscode.window.tabGroups`. |