You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
8
8
# CSV Editor Plugin for JetBrains IDE family
9
9
10
-
Compatible with _IntelliJ IDEA PhpStorm WebStorm PyCharm RubyMine AppCode CLion Gogland DataGrip Rider MPS Android Studio_ - __2022.1 and newer__
10
+
Compatible with _IntelliJ IDEA PhpStorm WebStorm PyCharm RubyMine AppCode CLion Gogland DataGrip Rider MPS Android Studio_ - __2022.2 and newer__
11
11
12
12
This plugin introduces CSV (_Comma-Separated Values_) as a language to Jetbrains IDE with a syntax definition, structured language elements and associated file types (.csv/.tsv/.psv).
13
13
This enables default editor features like syntax validation, highlighting and inspections for CSV-alike files.
// IDE version - https://www.jetbrains.com/intellij-repository/releases
71
-
var idea_version =System.getenv().getOrDefault('IDEA_VERSION', 'IC-2022.1.1')
72
-
var build_version = idea_version ==EAP_VERSION?idea_version: idea_version.substring(5, 7) + idea_version.charAt(8) // extract e.g. '221' from 'IC-2022.1.1'
72
+
var idea_version =System.getenv().getOrDefault('IDEA_VERSION', '2022.2.1')
73
+
var build_version = idea_version ==EAP_VERSION?'223': idea_version.substring(2, 4) + idea_version.charAt(5) // extract e.g. '221' from '2022.1.1'
73
74
74
75
version '3.0.0-'+ build_version
75
76
76
77
apply plugin: 'org.jetbrains.intellij'
77
78
intellij {
78
79
version = idea_version
79
-
pluginName ='CSV'
80
+
type =System.getenv().getOrDefault('IDEA_TYPE', 'IC')
0 commit comments