Skip to content

Commit 2ddfee4

Browse files
authored
Merge pull request #244 from SeeSharpSoft/master
Release 2.14.1
2 parents 5b74334 + d41ddb2 commit 2ddfee4

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2.14.1
2+
Aug 14, 2020
3+
4+
FIX: Performance for indexing large CSV files #239
5+
16
2.14.0
27
Aug 04, 2020
38

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jacocoTestReport {
2424
}
2525

2626
group 'net.seesharpsoft.intellij.plugins'
27-
version '2.14.0'
27+
version '2.14.1'
2828

2929
apply plugin: 'java'
3030
sourceCompatibility = javaVersion
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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+
}

src/main/resources/META-INF/plugin.xml

+5-3
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,7 @@
4949

5050
<change-notes><![CDATA[
5151
<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
5553
</pre>
5654
]]>
5755
</change-notes>
@@ -164,6 +162,10 @@ NEW: Table Editor coloring
164162

165163
<stripTrailingSpacesFilterFactory implementation="net.seesharpsoft.intellij.plugins.csv.settings.CsvStripTrailingSpacesFilterFactory" />
166164

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+
167169
<postStartupActivity implementation="net.seesharpsoft.intellij.plugins.csv.CsvPlugin" />
168170
</extensions>
169171

0 commit comments

Comments
 (0)