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
@@ -8,7 +8,7 @@
8
8
9
9
# Lightweight CSV Plugin for JetBrains IDE family
10
10
11
-
Compatible with _IntelliJ IDEA PhpStorm WebStorm PyCharm RubyMine AppCode CLion Gogland DataGrip Rider MPS Android Studio_ - __2016.3.2 and newer__
11
+
Compatible with _IntelliJ IDEA PhpStorm WebStorm PyCharm RubyMine AppCode CLion Gogland DataGrip Rider MPS Android Studio_ - __2017.3.1 and newer__
12
12
13
13
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).
14
14
This enables default editor features like syntax validation, highlighting and inspections for CSV-alike files.
Copy file name to clipboardExpand all lines: src/main/resources/META-INF/plugin.xml
+89-29Lines changed: 89 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -7,28 +7,27 @@
7
7
8
8
<description><![CDATA[
9
9
10
-
<p>The <em>Table Editor</em> is a newly introduced feature of CSV Plugin v2.*. Support its ongoing development by <a href="https://github.com/SeeSharpSoft/intellij-csv-validator/issues">reporting issues, providing suggestions, contributing ideas/features</a> or by just <a href="https://plugins.jetbrains.com/plugin/10037-csv-plugin">giving it a thumbs up.</a></p>
10
+
<p>Lightweight plugin for editing CSV/TSV/PSV files with a flexible table editor, syntax validation, structure highlighting, customizable coloring, new intentions and helpful inspections.</p>
11
11
<br><hr/><br>
12
-
13
-
Lightweight CSV plugin that supports editing files in CSV/TSV format.<br><br>
14
12
<b>Features:</b><br>
15
13
<ul>
16
-
<li>CSV/TSV/PSV file detection</li>
17
-
<li>table editor</li>
14
+
<li>support for CSV/TSV/PSV file extensions</li>
15
+
<li>customizable table editor</li>
18
16
<li>customizable text editor</li>
17
+
<li>customizable column coloring</li>
19
18
<li>syntax validation</li>
20
-
<li>syntax highlighting (configurable)</li>
21
-
<li>content formatting (configurable)</li>
19
+
<li>syntax highlighting</li>
20
+
<li>content formatting</li>
22
21
<li>quick fix inspections</li>
23
22
<li>intentions (Alt+Enter), e.g. Quote/Unquote (all), Shift Column Left/Right</li>
23
+
<li>balloon help & spell checker</li>
24
24
<li>structure view (header-entry layout)</li>
25
25
<li>support for ',', ';', '|' or '↹' as value separator</li>
26
26
<li>highlight of active column values</li>
27
-
<li>customizable column coloring</li>
28
27
<li>tab (↹) separator highlighting</li>
29
28
</ul>
30
29
31
-
<b>TSV file support:</b> <em>TSV files are recognized as such but treated as a variant of CSV files, the same syntax highlighting and code style settings are applied.</em>
30
+
<b>TSV/PSV file support:</b> <em>TSV/PSV files are recognized as such but treated as a variant of CSV files, the same syntax highlighting and code style settings are applied.</em>
32
31
<br><br>
33
32
<b>Code formatting:</b> <em>Default code formatting is 'Tabularize'. Can be changed in Settings -> Editor -> Code Style -> CSV</em>
34
33
<br><br>
@@ -46,37 +45,24 @@
46
45
47
46
<change-notes><![CDATA[
48
47
<pre style="font-family: sans-serif">
49
-
FIX: Index out of bound error on multi line clear cells #151
48
+
NEW: add separator selection to table editor #140
49
+
FIX: coloring of table cells (e.g. selection mode)
50
+
FIX: enter edit mode via keyboard (e.g. ENTER key in cell)
50
51
</pre>
51
52
]]>
52
53
</change-notes>
53
54
54
55
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
55
-
<idea-versionsince-build="192.5728.98"/>
56
+
<idea-versionsince-build="173.2099.1"/>
56
57
57
58
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
0 commit comments