Skip to content

Commit db85e5a

Browse files
committed
Update CONTRIBUTING.md
1 parent fdbc377 commit db85e5a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

CONTRIBUTING.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,30 @@
11
# Contributing to the IntelliJ Mise Plugin
22

3+
Thank you for your interest in contributing to the IntelliJ Mise Plugin!
4+
35
## Running other IDEs for testing
6+
47
As this plugin targets multiple IDEs, when developing you'll want to test against a specific IDE.
58

69
You can get a list of available tasks for running the plugin in different IDEs by running the following command:
10+
711
```shell
812
./gradlew tasks --group='intellij platform' | grep -E '^run'
913
```
1014

15+
> [!NOTE]
16+
> In many cases, Intellij Ultimates supports other products via plugins. Maybe you just need `runIntellijIdeaUltimate`
17+
18+
After that, you can run the desired IDE by running the following command:
19+
20+
```shell
21+
./gradlew prepareSandbox_runIntellijIdeaUltimate # only for the first time
22+
./gradlew runIntellijIdeaUltimate
23+
```
24+
25+
> [!NOTE]
26+
> If you want to use breakpoints for debugging, you can just run the gradle task with IDEA's debug option
27+
28+
1129
> [!TIP]
1230
> If you want to test other version of IDEs, you can change the version field in the [build.gradle.kts](./build.gradle.kts) file.

0 commit comments

Comments
 (0)