From 5d3f06a28d65028c06975d34236a2674d736912f Mon Sep 17 00:00:00 2001 From: Vitaly Khvostov Date: Thu, 5 Feb 2026 17:32:48 +0300 Subject: [PATCH] Fix IntelliJ IDEA version where K2 mode is the default It happened in Intellij IDEA 2025.1, not 2025.3 (see release notes https://www.jetbrains.com/idea/whatsnew/2025-1/#page__content-key-highlights) --- Writerside/topics/Testing-in-K1-Locally.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Writerside/topics/Testing-in-K1-Locally.md b/Writerside/topics/Testing-in-K1-Locally.md index a0719df..22a243f 100644 --- a/Writerside/topics/Testing-in-K1-Locally.md +++ b/Writerside/topics/Testing-in-K1-Locally.md @@ -1,8 +1,8 @@ # Testing in K1 Locally -From IntelliJ IDEA version 2025.3, K2 mode is the default. If you need to test the plugin in K1 mode locally, pass the -Didea.kotlin.plugin.use.k1=true VM option to the IntelliJ IDEA run configuration or to the test task. +From IntelliJ IDEA version 2025.1, K2 mode is the default. If you need to test the plugin in K1 mode locally, pass the -Didea.kotlin.plugin.use.k1=true VM option to the IntelliJ IDEA run configuration or to the test task. -> If you use IntelliJ IDEA version 2025.2 or older, use -Didea.kotlin.plugin.use.k2=true to enable K2 mode. +> If you use IntelliJ IDEA version 2024.3 or older, use -Didea.kotlin.plugin.use.k2=true to enable K2 mode. When using the [IntelliJ Platform Gradle Plugin](https://github.com/JetBrains/intellij-platform-gradle-plugin), you can specify the option directly in the `build.gradle.kts` file.