mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-04-11 05:15:43 +02:00

There are several problems with it: - It was highly unstable, so it was constantly disabled - Qodana baseline file is huge, it's almost the size of the whole repo
16 lines
369 B
Kotlin
16 lines
369 B
Kotlin
package _Self
|
|
|
|
object Constants {
|
|
const val DEFAULT_CHANNEL = "default"
|
|
const val EAP_CHANNEL = "eap"
|
|
const val DEV_CHANNEL = "Dev"
|
|
|
|
const val NVIM_TESTS = "2024.3.3"
|
|
const val PROPERTY_TESTS = "2024.3.3"
|
|
const val LONG_RUNNING_TESTS = "2024.3.3"
|
|
const val RELEASE = "2024.3.3"
|
|
|
|
const val RELEASE_DEV = "2024.3.3"
|
|
const val RELEASE_EAP = "2024.3.3"
|
|
}
|