|
8 | 8 | <description><![CDATA[ |
9 | 9 |
|
10 | 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><br> |
| 11 | + <img width="600" height="297" src="https://plugins.jetbrains.com/files/10037/screenshot_21096.png" /><br><br> |
11 | 12 | <p><b>Features:</b><br> |
12 | 13 | <ul> |
13 | 14 | <li>support for CSV/TSV/PSV file extensions</li> |
|
38 | 39 | <em>Thanks to @royqh1979, @egoisticalgoat, @sabi0, @ptahchiev, @ghost, @MarkJeronimus, <a href="http://finevisuals.de" target="_blank">FineVisuals</a> and others for supporting me and the project!</em> |
39 | 40 | <br><br><br> |
40 | 41 | </p> |
41 | | - <img width="600" height="297" src="https://plugins.jetbrains.com/files/10037/screenshot_21096.png" /><br><br> |
42 | 42 | <p> |
43 | 43 | <span style="color: #555555"> |
44 | 44 | <b>IntelliJ IDEA Ultimate/PhpStorm/DataGrip/etc.:</b> The plugin is fully compatible with the <em>'Edit as Table...'</em> functionality.<br><br> |
|
48 | 48 |
|
49 | 49 | <change-notes><![CDATA[ |
50 | 50 | <pre style="font-family: sans-serif"> |
51 | | -NEW: option to keep trailing spaces for CSV/TSV/PSV files |
52 | | -FIX: consider escape char inside quotes as escaped text |
| 51 | +FIX: resolve CSV/TSV file type conflict for versions 2020.* with Database plugin |
53 | 52 | </pre> |
54 | 53 | ]]> |
55 | 54 | </change-notes> |
56 | 55 |
|
57 | 56 | <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description --> |
58 | | - <idea-version since-build="173.2099.1" /> |
59 | | -<!-- <idea-version since-build="192" until-build="192.*" />--> |
| 57 | +<!-- <idea-version since-build="173.2099.1" until-build="192.*" />--> |
| 58 | + <idea-version since-build="193" /> |
60 | 59 |
|
61 | 60 | <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html |
62 | 61 | on how to target different products --> |
63 | 62 | <depends>com.intellij.modules.lang</depends> |
64 | 63 |
|
65 | 64 | <extensions defaultExtensionNs="com.intellij"> |
66 | | - <!-- required for 192.* --> |
| 65 | + <!-- version 173.* - 192.* --> |
67 | 66 | <!-- <fileType name="FileType_CSV" implementationClass="net.seesharpsoft.intellij.plugins.csv.CsvFileType" extensions="csv"/>--> |
68 | 67 | <!-- <fileType name="FileType_TSV" implementationClass="net.seesharpsoft.intellij.plugins.tsv.TsvFileType" extensions="tsv;tab"/>--> |
69 | 68 | <!-- <fileType name="FileType_PSV" implementationClass="net.seesharpsoft.intellij.plugins.psv.PsvFileType" extensions="psv"/>--> |
| 69 | +<!-- <fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.csv.CsvFileTypeFactory"/>--> |
| 70 | +<!-- <fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.tsv.TsvFileTypeFactory"/>--> |
| 71 | +<!-- <fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.psv.PsvFileTypeFactory"/>--> |
70 | 72 |
|
71 | | - <fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.csv.CsvFileTypeFactory"/> |
72 | | - <fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.tsv.TsvFileTypeFactory"/> |
73 | | - <fileTypeFactory implementation="net.seesharpsoft.intellij.plugins.psv.PsvFileTypeFactory"/> |
| 73 | + <!-- version 193.* --> |
| 74 | + <fileType name="CSV" language="csv" implementationClass="net.seesharpsoft.intellij.plugins.csv.CsvFileType" extensions="csv" fieldName="INSTANCE"/> |
| 75 | + <fileType name="TSV" language="tsv" implementationClass="net.seesharpsoft.intellij.plugins.tsv.TsvFileType" extensions="tsv;tab" fieldName="INSTANCE"/> |
| 76 | + <fileType name="PSV" language="psv" implementationClass="net.seesharpsoft.intellij.plugins.psv.PsvFileType" extensions="psv" fieldName="INSTANCE"/> |
| 77 | + <fileTypeOverrider implementation="net.seesharpsoft.intellij.plugins.csv.CsvFileTypeOverrider" /> |
74 | 78 |
|
75 | 79 | <lang.parserDefinition language="csv" |
76 | 80 | implementationClass="net.seesharpsoft.intellij.plugins.csv.CsvParserDefinition"/> |
|
0 commit comments