diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-09-25 23:10:05 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-09-25 23:10:05 -0700 |
commit | 51fc07cf6441d6330ce64e45e56e8f333ca309ed (patch) | |
tree | f97734abe7f94000473be2940e4c28fd5b43040c | |
parent | 208eb65f67ccc62ce6d683fd9bed2fe9524b2136 (diff) | |
download | sncontinue-51fc07cf6441d6330ce64e45e56e8f333ca309ed.tar.gz sncontinue-51fc07cf6441d6330ce64e45e56e8f333ca309ed.tar.bz2 sncontinue-51fc07cf6441d6330ce64e45e56e8f333ca309ed.zip |
fix: :bug: small fixes, update troubleshooting docs
-rw-r--r-- | docs/docs/troubleshooting.md | 4 | ||||
-rw-r--r-- | extension/package.json | 5 | ||||
-rw-r--r-- | extension/react-app/src/pages/gui.tsx | 2 |
3 files changed, 5 insertions, 6 deletions
diff --git a/docs/docs/troubleshooting.md b/docs/docs/troubleshooting.md index f9efac41..18cc2204 100644 --- a/docs/docs/troubleshooting.md +++ b/docs/docs/troubleshooting.md @@ -40,6 +40,10 @@ If your Continue server is not setting up, try checking the console logs: 4. Select the `Console` tab 5. Read the console logs +## Problems with Meilisearch + +If you have checked the logs and the problem seems related to Meilisearch, or if context providers aren't working, you can try to manually setup Meilisearch with their instructions [here](https://www.meilisearch.com/docs/learn/getting_started/installation). Once downloaded, you should place the Meilisearch binary at `~/.continue/server/meilisearch` and start it. Once it is running on port 7700, Continue will be able to automatically connect. + ## Download an Older Version If you've tried everything, reported an error, and are waiting to hear back, you can try downloading an older version of the extension. All versions are hosted on the Open VSX Registry [here](https://open-vsx.org/extension/Continue/continue). Once you've downloaded the extension, which will be a .vsix file, you can install it manually by following the instructions [here](https://code.visualstudio.com/docs/editor/extension-gallery#_install-from-a-vsix). diff --git a/extension/package.json b/extension/package.json index 4a494f1c..43139b67 100644 --- a/extension/package.json +++ b/extension/package.json @@ -77,11 +77,6 @@ "title": "Quick Text Entry" }, { - "command": "continue.quickFix", - "category": "Continue", - "title": "Quick Fix with Continue" - }, - { "command": "continue.viewLogs", "category": "Continue", "title": "View Continue Server Logs" diff --git a/extension/react-app/src/pages/gui.tsx b/extension/react-app/src/pages/gui.tsx index 576abd40..dfcefdee 100644 --- a/extension/react-app/src/pages/gui.tsx +++ b/extension/react-app/src/pages/gui.tsx @@ -341,7 +341,7 @@ function GUI(props: GUIProps) { "mainTextEntryCounter", (currentCount + 1).toString() ); - if (currentCount === -300) { + if (currentCount === 300) { dispatch( setDialogMessage( <div className="text-center p-4"> |