From cdaae2a49e585627aadba057651e4a438e03fcf4 Mon Sep 17 00:00:00 2001 From: Roo Code Date: Sat, 11 Apr 2026 21:59:08 +0000 Subject: [PATCH 1/2] docs: add installing guide with VSCodium and Open VSX support --- docs/docs.json | 1 + docs/getting-started/installing.mdx | 146 ++++++++++++++++++++++++++++ 2 files changed, 147 insertions(+) create mode 100644 docs/getting-started/installing.mdx diff --git a/docs/docs.json b/docs/docs.json index 8556401ffc6..c7da08d1425 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -81,6 +81,7 @@ "icon": "rocket-launch", "pages": [ "ide-extensions/install", + "getting-started/installing", "ide-extensions/quick-start", "customize/overview" ] diff --git a/docs/getting-started/installing.mdx b/docs/getting-started/installing.mdx new file mode 100644 index 00000000000..f09456757de --- /dev/null +++ b/docs/getting-started/installing.mdx @@ -0,0 +1,146 @@ +--- +title: "Installing Continue" +description: "Install Continue in VS Code, VSCodium, or JetBrains in just a few steps." +--- + + + + + + +Click `Install` on the [Continue extension page in the Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=Continue.continue). + + + + + This will open the Continue extension page in VS Code, where you will need to + click `Install` again. + + + +The Continue logo will appear on the left sidebar. For a better experience, move Continue to the right sidebar. + +![move-to-right-sidebar](/images/move-to-right-sidebar-b2d315296198e41046fc174d8178f30a.gif) + + + + +[Sign in to Mission Control](https://auth.continue.dev/) to get started. + + + + + If you have any problems, see the [troubleshooting guide](/troubleshooting) or + ask for help in [GitHub Discussions](https://github.com/continuedev/continue/discussions). + + + + + + +Continue is also available on the [Open VSX Registry](https://open-vsx.org/extension/Continue/continue) for editors that support it, including **VSCodium**, **Code - OSS**, and other VS Code alternatives. + + + +Visit the [Continue page on Open VSX](https://open-vsx.org/extension/Continue/continue) and click `Download` to get the `.vsix` file, or search for "Continue" directly in your editor's extension panel. + + + The Open VSX extension panel looks different from the VS Code Marketplace. + If you are searching from inside your editor, make sure it is configured to + use the Open VSX registry (this is the default for VSCodium). + + + + + + If you downloaded the `.vsix` file manually, install it via the command palette: + + 1. Open the command palette (`Ctrl` + `Shift` + `P`) + 2. Run **Extensions: Install from VSIX...** + 3. Select the downloaded `.vsix` file + + + +The Continue logo will appear on the left sidebar. For a better experience, move Continue to the right sidebar. + +![move-to-right-sidebar](/images/move-to-right-sidebar-b2d315296198e41046fc174d8178f30a.gif) + + + + +[Sign in to Mission Control](https://auth.continue.dev/) to get started. + + + +### VSCodium Troubleshooting + +If Continue does not appear in the extension search results inside VSCodium, your editor may not be configured to use the Open VSX registry. You can verify and fix this by checking the `product.json` configuration file for your platform: + +| Platform | Typical `product.json` location | +|---|---| +| **Linux** (system install) | `/usr/share/codium/resources/app/product.json` | +| **Linux** (Flatpak) | `/var/lib/flatpak/app/com.vscodium.codium/current/active/files/share/codium/resources/app/product.json` | +| **macOS** | `/Applications/VSCodium.app/Contents/Resources/app/product.json` | +| **Windows** | `C:\Users\\AppData\Local\Programs\VSCodium\resources\app\product.json` | + +Open `product.json` and verify that the `extensionsGallery` section points to the Open VSX registry: + +```json +"extensionsGallery": { + "serviceUrl": "https://open-vsx.org/vscode/gallery", + "itemUrl": "https://open-vsx.org/vscode/item", + "resourceUrlTemplate": "https://open-vsx.org/vscode/unpkg/{publisher}/{name}/{version}/{path}" +} +``` + + + A common mistake is using `https://marketplace.visualstudio.com` URLs here -- + those are for the proprietary VS Code Marketplace and will not work in + VSCodium. The correct service URL is `https://open-vsx.org/vscode/gallery`. + + +After saving changes to `product.json`, restart VSCodium. You should then be able to search for and install Continue from the extensions panel. + + + If you have any problems, see the [troubleshooting guide](/troubleshooting) or + ask for help in [GitHub Discussions](https://github.com/continuedev/continue/discussions). + + + + + + + + +Open your JetBrains IDE and open **Settings** using `Ctrl` + `Alt` + `S`. + + + + Select **Plugins** on the sidebar and search for "Continue" in the marketplace. + + + +Click `Install`, which will cause the Continue logo to show up on the right toolbar. + +![jetbrains-getting-started.png](/images/getting-started/images/jetbrains-getting-started-d62b7edee1cdd58508c5075faf285955.png) + + + + +[Sign in to Mission Control](https://auth.continue.dev/) to get started. + + + + + If you have any problems, see the [troubleshooting guide](/troubleshooting) or + ask for help in [GitHub Discussions](https://github.com/continuedev/continue/discussions). + + + + + +## Signing in + +Click "Get started" to sign in to Mission Control and get started. + +![Hub Onboarding in the Extension](/images/getting-started/images/hub-onboarding-card-81abd457b6d131c4b0aa89a5a6d647d3.png) From cf3d11a871a7405eb382c90428b6d2ea0700d82b Mon Sep 17 00:00:00 2001 From: Roo Code Date: Sat, 11 Apr 2026 22:09:02 +0000 Subject: [PATCH 2/2] fix: remove duplicate nav entry, add YouTube embed, align style with existing install page --- docs/docs.json | 1 - docs/getting-started/installing.mdx | 42 ++++++++++++++++++----------- 2 files changed, 26 insertions(+), 17 deletions(-) diff --git a/docs/docs.json b/docs/docs.json index c7da08d1425..468b2c71e76 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -80,7 +80,6 @@ "group": "Getting Started", "icon": "rocket-launch", "pages": [ - "ide-extensions/install", "getting-started/installing", "ide-extensions/quick-start", "customize/overview" diff --git a/docs/getting-started/installing.mdx b/docs/getting-started/installing.mdx index f09456757de..8643b24aeef 100644 --- a/docs/getting-started/installing.mdx +++ b/docs/getting-started/installing.mdx @@ -3,35 +3,45 @@ title: "Installing Continue" description: "Install Continue in VS Code, VSCodium, or JetBrains in just a few steps." --- + + -Click `Install` on the [Continue extension page in the Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=Continue.continue). +Click `Install` on the [Continue extension page in the Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=Continue.continue) This will open the Continue extension page in VS Code, where you will need to - click `Install` again. + click `Install` again -The Continue logo will appear on the left sidebar. For a better experience, move Continue to the right sidebar. +The Continue logo will appear on the left sidebar. For a better experience, move Continue to the right sidebar ![move-to-right-sidebar](/images/move-to-right-sidebar-b2d315296198e41046fc174d8178f30a.gif) -[Sign in to Mission Control](https://auth.continue.dev/) to get started. +[Sign in to Mission Control](https://auth.continue.dev/) to get started If you have any problems, see the [troubleshooting guide](/troubleshooting) or - ask for help in [GitHub Discussions](https://github.com/continuedev/continue/discussions). + ask for help in [GitHub Discussions](https://github.com/continuedev/continue/discussions) @@ -42,12 +52,12 @@ Continue is also available on the [Open VSX Registry](https://open-vsx.org/exten -Visit the [Continue page on Open VSX](https://open-vsx.org/extension/Continue/continue) and click `Download` to get the `.vsix` file, or search for "Continue" directly in your editor's extension panel. +Visit the [Continue page on Open VSX](https://open-vsx.org/extension/Continue/continue) and click `Download` to get the `.vsix` file, or search for "Continue" directly in your editor's extension panel The Open VSX extension panel looks different from the VS Code Marketplace. If you are searching from inside your editor, make sure it is configured to - use the Open VSX registry (this is the default for VSCodium). + use the Open VSX registry (this is the default for VSCodium) @@ -61,14 +71,14 @@ Visit the [Continue page on Open VSX](https://open-vsx.org/extension/Continue/co -The Continue logo will appear on the left sidebar. For a better experience, move Continue to the right sidebar. +The Continue logo will appear on the left sidebar. For a better experience, move Continue to the right sidebar ![move-to-right-sidebar](/images/move-to-right-sidebar-b2d315296198e41046fc174d8178f30a.gif) -[Sign in to Mission Control](https://auth.continue.dev/) to get started. +[Sign in to Mission Control](https://auth.continue.dev/) to get started @@ -103,7 +113,7 @@ After saving changes to `product.json`, restart VSCodium. You should then be abl If you have any problems, see the [troubleshooting guide](/troubleshooting) or - ask for help in [GitHub Discussions](https://github.com/continuedev/continue/discussions). + ask for help in [GitHub Discussions](https://github.com/continuedev/continue/discussions) @@ -112,28 +122,28 @@ After saving changes to `product.json`, restart VSCodium. You should then be abl -Open your JetBrains IDE and open **Settings** using `Ctrl` + `Alt` + `S`. +Open your JetBrains IDE and open **Settings** using `Ctrl` + `Alt` + `S` - Select **Plugins** on the sidebar and search for "Continue" in the marketplace. + Select **Plugins** on the sidebar and search for "Continue" in the marketplace -Click `Install`, which will cause the Continue logo to show up on the right toolbar. +Click `Install`, which will cause the Continue logo to show up on the right toolbar ![jetbrains-getting-started.png](/images/getting-started/images/jetbrains-getting-started-d62b7edee1cdd58508c5075faf285955.png) -[Sign in to Mission Control](https://auth.continue.dev/) to get started. +[Sign in to Mission Control](https://auth.continue.dev/) to get started If you have any problems, see the [troubleshooting guide](/troubleshooting) or - ask for help in [GitHub Discussions](https://github.com/continuedev/continue/discussions). + ask for help in [GitHub Discussions](https://github.com/continuedev/continue/discussions) @@ -143,4 +153,4 @@ Click `Install`, which will cause the Continue logo to show up on the right tool Click "Get started" to sign in to Mission Control and get started. -![Hub Onboarding in the Extension](/images/getting-started/images/hub-onboarding-card-81abd457b6d131c4b0aa89a5a6d647d3.png) +![Hub Onboarding in the Extension](../images/getting-started/images/hub-onboarding-card-81abd457b6d131c4b0aa89a5a6d647d3.png)