diff options
Diffstat (limited to 'extension')
-rw-r--r-- | extension/README.md | 22 | ||||
-rw-r--r-- | extension/package-lock.json | 4 | ||||
-rw-r--r-- | extension/package.json | 2 | ||||
-rw-r--r-- | extension/react-app/src/components/ComboBox.tsx | 4 |
4 files changed, 7 insertions, 25 deletions
diff --git a/extension/README.md b/extension/README.md index f2dbd164..830c9606 100644 --- a/extension/README.md +++ b/extension/README.md @@ -45,27 +45,9 @@ If your Continue server is not setting up, please check the console logs: # Troubleshooting -The Continue VS Code extension is currently in beta. It will attempt to start the Continue Python server locally for you, but sometimes this will fail, causing the "Starting Continue server..." not to disappear, or other hangups. There are a few things you can do to troubleshoot: +The Continue VS Code extension is currently in beta. It will attempt to start the Continue Python server locally for you, but sometimes this will fail, causing the "Starting Continue server..." not to disappear, or other hangups. While we are working on fixes to all of these problems, read here for common solutions: -### Reload VS Code - -Open the command palette with cmd+shift+p, then type "Reload Window" and select it. This will give Continue another chance to start the server. - -### Kill the existing server - -If the above doesn't work, you can try to kill the server manually before reloading. - -1. Open any terminal -2. Enter `lsof -i :65432 | grep "(LISTEN)" | awk '{print $2}' | xargs kill -9` to kill the server running on port 65432. -3. Restart VS Code, and Continue will attempt to start a fresh server. - -### Run the server manually - -If none of these work, you can start the server yourself as is explained here: [Running the Continue server manually](https://continue.dev/docs/how-continue-works) - -### Still having trouble? - -Create a GitHub issue [here](https://github.com/continuedev/continue/issues/new?assignees=&labels=bug&projects=&template=bug-report-%F0%9F%90%9B.md&title=), leaving the details of your problem, and we'll be able to more quickly help you out. +> [Troubleshooting Continue](https://continue.dev/docs/troubleshooting) ## License diff --git a/extension/package-lock.json b/extension/package-lock.json index 568cefe2..cc583082 100644 --- a/extension/package-lock.json +++ b/extension/package-lock.json @@ -1,12 +1,12 @@ { "name": "continue", - "version": "0.0.231", + "version": "0.0.232", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "continue", - "version": "0.0.231", + "version": "0.0.232", "license": "Apache-2.0", "dependencies": { "@electron/rebuild": "^3.2.10", diff --git a/extension/package.json b/extension/package.json index af446bde..17398b91 100644 --- a/extension/package.json +++ b/extension/package.json @@ -14,7 +14,7 @@ "displayName": "Continue", "pricing": "Free", "description": "The open-source coding autopilot", - "version": "0.0.231", + "version": "0.0.232", "publisher": "Continue", "engines": { "vscode": "^1.67.0" diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx index da559383..ba87cb9f 100644 --- a/extension/react-app/src/components/ComboBox.tsx +++ b/extension/react-app/src/components/ComboBox.tsx @@ -169,12 +169,12 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { props.onInputValueChange(inputValue); if (inputValue.endsWith("@") || currentlyInContextQuery) { - const segs = inputValue.split("@"); + const segs = inputValue?.split("@") || []; if (segs.length > 1) { // Get search results and return setCurrentlyInContextQuery(true); - const providerAndQuery = segs[segs.length - 1]; + const providerAndQuery = segs[segs.length - 1] || ""; const [provider, query] = providerAndQuery.split(" "); searchClient .index(SEARCH_INDEX_NAME) |