File tree 4 files changed +17
-4
lines changed
java/net/seesharpsoft/intellij/plugins/csv
4 files changed +17
-4
lines changed Original file line number Diff line number Diff line change
1
+ 2.14.1
2
+ Aug 14, 2020
3
+
4
+ FIX: Performance for indexing large CSV files #239
5
+
1
6
2.14.0
2
7
Aug 04, 2020
3
8
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ jacocoTestReport {
24
24
}
25
25
26
26
group ' net.seesharpsoft.intellij.plugins'
27
- version ' 2.14.0 '
27
+ version ' 2.14.1 '
28
28
29
29
apply plugin : ' java'
30
30
sourceCompatibility = javaVersion
Original file line number Diff line number Diff line change
1
+ package net .seesharpsoft .intellij .plugins .csv ;
2
+
3
+ import com .intellij .psi .impl .cache .impl .todo .PlainTextTodoIndexer ;
4
+
5
+ public class CsvTodoIndexer extends PlainTextTodoIndexer {
6
+ }
Original file line number Diff line number Diff line change 49
49
50
50
<change-notes ><![CDATA[
51
51
<pre style="font-family: sans-serif">
52
- NEW: Predefined column colors (Rainbow-style)
53
- NEW: Enhanced color scheme switch
54
- NEW: Table Editor coloring
52
+ FIX: Performance for indexing large CSV files #239
55
53
</pre>
56
54
]]>
57
55
</change-notes >
@@ -164,6 +162,10 @@ NEW: Table Editor coloring
164
162
165
163
<stripTrailingSpacesFilterFactory implementation =" net.seesharpsoft.intellij.plugins.csv.settings.CsvStripTrailingSpacesFilterFactory" />
166
164
165
+ <todoIndexer implementationClass =" net.seesharpsoft.intellij.plugins.csv.CsvTodoIndexer" filetype =" CSV" />
166
+ <todoIndexer implementationClass =" net.seesharpsoft.intellij.plugins.csv.CsvTodoIndexer" filetype =" TSV" />
167
+ <todoIndexer implementationClass =" net.seesharpsoft.intellij.plugins.csv.CsvTodoIndexer" filetype =" PSV" />
168
+
167
169
<postStartupActivity implementation =" net.seesharpsoft.intellij.plugins.csv.CsvPlugin" />
168
170
</extensions >
169
171
You can’t perform that action at this time.
0 commit comments