This file is for contribution guidelines specific to the JetBrains extension. See the root
CONTRIBUTING.md for general contribution guidelines.
This extension shares much of the code with the VS Code extension by utilizing shared code in the core directory and
packaging it in a binary in the binary directory. Communication occurs over stdin/stdout.
Continue is built with JDK version 17 (as specified in ./build.gradle.kts), which can be
downloaded from Oracle.
We recommend using IntelliJ IDEA, which you can download from the JetBrains website.
Both Ultimate and Community (free) editions are suitable for this project, although Ultimate has better debugging (see notes below).
- Enable code formatting on save:
Settings | Tools | Actions on Save | Reformat code
- Thread Access Info - adds an extra debug panel showing possible thread access violation (according to Intellij Platform SDK guidelines)
- File Expander - allows you to easily preview archives as
directories (like
build/distributions/continue-*.zip)
This project requires Node.js version 20.19.0 (LTS) or higher. You have two options for installation:
- Download and install directly from nodejs.org.
- If you're using NVM (Node Version Manager), set the correct Node.js version for this project by running
nvm usein the project root.
- Unix:
./scripts/install-dependencies.sh - Windows:
.\scripts\install-dependencies.ps1
- Ensure that you have the Gradle plugin installed
Select the Run Continue task in the top right corner of the IDE and then select the "Debug" option.
In community edition, use
Run Continue (CE)instead, which uses shell scripts instead of Ultimate-only node configs. If you want to debug the core in CE, you'll need to quit theStart Core Dev Server (CE)process and run the core in a different environment that supports debugging, such as VS Code (Launch "Core Binary").
This should open a new instance on IntelliJ with the extension installed.
When running the Start Core Dev Server task, we set the location of your Continue directory to
./extensions/.continue-debug. This is to
allow for changes to your config.json and other files during development, without affecting your actual configuration.
When using the Run Continue task, we automatically tail both prompt logs and IDE logs.
You can selectively increase the log granularity (e.g., debug-level logs) as follows:
- Navigate to
Help | Diagnostic Tools | Debug Log Settings... - Add a line in the format:
com.intellij.diagnostic:debug
You can find more information about this feature in official docs.
If in doubt, check out the official IntelliJ Platform Plugin Template. These templates are the most up-to-date examples of how to correctly customize the plugin build scripts.
Also, check out the useful recipes for common problems.
There's a tool called JetBrains Platform Explorer that aggregates plugin metadata and allows you to filter by specific extension points. If you're having trouble implementing a feature that's not officially documented, you can learn from other open source plugins.
extensions/intellij: Attempt to reload changed classes by selecting Run | Debugging Actions | Reload Changed Classes`- This will often fail on new imports, schema changes etc. In that case, you need to stop and restart the extension
gui: Changes will be reloaded automaticallycore: Runnpm run build -- --os [darwin | linux | win32]from thebinarydirectory (requires restarting theStart Core Dev Servertask)
extensions/intellij: Breakpoints can be set in Intellijgui: You'll need to set explicitdebuggerstatements in the source code, or through the browser dev toolscore: Breakpoints can be set in Intellij (requires restarting theStart Core Dev Servertask)- If you have Community Edition installed, you won't be able to use breakpoints in IntelliJ. Instead, you can start
the
Core Binarytask in VS Code and set breakpoints in that IDE.
- If you have Community Edition installed, you won't be able to use breakpoints in IntelliJ. Instead, you can start
the
To see the list of Gradle tasks available, you can run the following:
./gradlew tasksA handful of the most relevant tasks are outlined below:
build - Assembles and tests this project.
clean - Deletes the build directory.
dependencies - Displays all dependencies declared in root project 'continue-intellij-extension'
runIde - Runs the IDE instance with the developed plugin installed.
verifyPluginConfiguration - Checks if Java and Kotlin compilers configuration meet IntelliJ SDK requirements- Unix:
./gradlew buildPlugin - Windows:
./gradlew.bat buildPlugin
This will generate a .zip file in ./build/distributions with the version defined in
./gradle.properties
- Navigate to the Plugins settings page (Settings | Plugins)
- Click on the gear icon
- Click Install from disk and select the ZIP file in
./build/distributions
Test commands:
./gradlew test- to run unit tests./gradlew testIntegration- to run e2e tests
The e2e tests are written using intellij-ide-starter. The first run of the e2e tests may take a while because the required IDE needs to be downloaded. Note that these tests fully take control of your mouse while executing.
If you are on macOS, you'll need to give IntelliJ permission to control your computer in order to run the e2e tests.
Open System Settings > Privacy & Security > Accessibility and toggle the switch for IntelliJ.
The testing platform provides a rich DSL for most UI components in IntelliJ. However, if you want to interact with a custom element, you can define your own XPath selector.
To do this, run an e2e test and visit localhost:63343/api/remote-driver/ to view an HTML representation of the IDE's Swing component tree. See Integration Tests for more details about this workflow.
