mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 14:57:35 +07:00
sort semicolon-separated extensions within "extensions" attribute of <fileType> in plugin.xml to ease the maintenance
GitOrigin-RevId: 06b3061fdb7bfed840a7bb58e4725e3351b37b40
This commit is contained in:
committed by
intellij-monorepo-bot
parent
da927e7803
commit
3e50d9d2c4
@@ -20,9 +20,9 @@
|
||||
</actions>
|
||||
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
<fileType name="JSON" extensions="json;har" implementationClass="com.intellij.json.JsonFileType" fieldName="INSTANCE" language="JSON"/>
|
||||
<fileType name="JSON" extensions="har;json" implementationClass="com.intellij.json.JsonFileType" fieldName="INSTANCE" language="JSON"/>
|
||||
<fileType name="JSON5" extensions="json5" implementationClass="com.intellij.json.json5.Json5FileType" fieldName="INSTANCE" language="JSON5"/>
|
||||
<fileType name="JSON-lines" extensions="jsonl;jsonlines;ndjson;ldjson"
|
||||
<fileType name="JSON-lines" extensions="jsonl;jsonlines;ldjson;ndjson"
|
||||
implementationClass="com.intellij.json.jsonLines.JsonLinesFileType" fieldName="INSTANCE" language="JSON Lines"/>
|
||||
<fileIconProvider implementation="com.jetbrains.jsonSchema.JsonSchemaIconProvider"/>
|
||||
<lang.parserDefinition language="JSON" implementationClass="com.intellij.json.JsonParserDefinition"/>
|
||||
|
||||
@@ -544,11 +544,11 @@
|
||||
id="http.certificates" instance="com.intellij.util.net.ssl.CertificateConfigurable"/>
|
||||
|
||||
<fileType name="ARCHIVE" implementationClass="com.intellij.ide.highlighter.ArchiveFileType" fieldName="INSTANCE"
|
||||
extensions="zip;jar;war;ear;swc;ane;egg;apk"/>
|
||||
extensions="ane;apk;ear;egg;jar;swc;war;zip"/>
|
||||
<fileType name="PLAIN_TEXT" implementationClass="com.intellij.openapi.fileTypes.PlainTextFileType" fieldName="INSTANCE" language="TEXT"
|
||||
extensions="txt"/>
|
||||
<fileType name="Native" implementationClass="com.intellij.openapi.fileTypes.NativeFileType" fieldName="INSTANCE"
|
||||
extensions="doc;docx;xls;xlsx;ppt;pptx;mdb;vsd;pdf;hlp;chm;odt"/>
|
||||
extensions="chm;doc;docx;hlp;mdb;odt;pdf;ppt;pptx;vsd;xls;xlsx"/>
|
||||
<fileType name="UNKNOWN" implementationClass="com.intellij.openapi.fileTypes.UnknownFileType" fieldName="INSTANCE"/>
|
||||
<fileType name="AUTO_DETECTED" implementationClass="com.intellij.openapi.fileTypes.ex.DetectedByContentFileType" fieldName="INSTANCE"/>
|
||||
|
||||
|
||||
@@ -109,10 +109,10 @@
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
<highlightingPassFactory implementation="com.intellij.codeInsight.daemon.impl.tagTreeHighlighting.XmlTagTreeHighlightingPassFactory"/>
|
||||
|
||||
<fileType name="HTML" implementationClass="com.intellij.ide.highlighter.HtmlFileType" fieldName="INSTANCE" language="HTML" extensions="html;htm;sht;shtm;shtml"/>
|
||||
<fileType name="HTML" implementationClass="com.intellij.ide.highlighter.HtmlFileType" fieldName="INSTANCE" language="HTML" extensions="htm;html;sht;shtm;shtml"/>
|
||||
<fileType name="XHTML" implementationClass="com.intellij.ide.highlighter.XHtmlFileType" fieldName="INSTANCE" language="XHTML" extensions="xhtml"/>
|
||||
<fileType name="DTD" implementationClass="com.intellij.ide.highlighter.DTDFileType" fieldName="INSTANCE" language="DTD" extensions="dtd;ent;mod;elt"/>
|
||||
<fileType name="XML" implementationClass="com.intellij.ide.highlighter.XmlFileType" fieldName="INSTANCE" language="XML" extensions="xml;xsd;tld;xsl;jnlp;wsdl;jhm;ant;xul;xslt;rng;fxml;jrxml"/>
|
||||
<fileType name="DTD" implementationClass="com.intellij.ide.highlighter.DTDFileType" fieldName="INSTANCE" language="DTD" extensions="dtd;elt;ent;mod"/>
|
||||
<fileType name="XML" implementationClass="com.intellij.ide.highlighter.XmlFileType" fieldName="INSTANCE" language="XML" extensions="ant;fxml;jhm;jnlp;jrxml;rng;tld;wsdl;xml;xsd;xsl;xslt;xul"/>
|
||||
|
||||
<bidiRegionsSeparator language="XML" implementationClass="com.intellij.openapi.editor.bidi.XmlBidiRegionsSeparator"/>
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
</highlighting>
|
||||
</filetype>
|
||||
|
||||
<filetype binary="false" default_extension="cpp" extensions="c;cpp;h;hpp;cc" description="C/C++" name="C++"
|
||||
<filetype binary="false" default_extension="cpp" extensions="c;cc;cpp;h;hpp" description="C/C++" name="C++"
|
||||
icon="AllIcons.FileTypes.Custom">
|
||||
<highlighting>
|
||||
<options>
|
||||
@@ -248,7 +248,7 @@
|
||||
</highlighting>
|
||||
</filetype>
|
||||
|
||||
<filetype binary="false" default_extension="jsp" extensions="jsp;jsf;jspf;tag;tagf" description="JSP (syntax highlighting only)"
|
||||
<filetype binary="false" default_extension="jsp" extensions="jsf;jsp;jspf;tag;tagf" description="JSP (syntax highlighting only)"
|
||||
name="JSP" icon="AllIcons.FileTypes.Jsp">
|
||||
<highlighting>
|
||||
<options>
|
||||
|
||||
@@ -205,7 +205,7 @@
|
||||
<handleTypeFactory implementation="com.intellij.openapi.vcs.readOnlyHandler.VcsHandleTypeFactory"/>
|
||||
|
||||
<keymapExtension implementation="com.intellij.openapi.vcs.impl.VcsKeymapExtension"/>
|
||||
<fileType name="PATCH" implementationClass="com.intellij.openapi.vcs.changes.patch.PatchFileType" fieldName="INSTANCE" extensions="patch;diff" />
|
||||
<fileType name="PATCH" implementationClass="com.intellij.openapi.vcs.changes.patch.PatchFileType" fieldName="INSTANCE" extensions="diff;patch" />
|
||||
<virtualFileSystem key="vcs" implementationClass="com.intellij.openapi.vcs.vfs.VcsFileSystem"/>
|
||||
<fileDocumentSynchronizationVetoer implementation="com.intellij.vcs.commit.SaveCommittingDocumentsVetoer"/>
|
||||
<fileDocumentManagerListener implementation="com.intellij.vcs.commit.SaveCommittingDocumentsVetoer"/>
|
||||
|
||||
@@ -43,7 +43,7 @@ Includes the following features:</p>
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
<httpRequestHandler implementation="org.intellij.plugins.markdown.google.authorization.GoogleOAuthCallbackHandler"/>
|
||||
|
||||
<fileType name="Markdown" extensions="md;markdown" language="Markdown"
|
||||
<fileType name="Markdown" extensions="markdown;md" language="Markdown"
|
||||
implementationClass="org.intellij.plugins.markdown.lang.MarkdownFileType" fieldName="INSTANCE"/>
|
||||
<lang.fileViewProviderFactory language="Markdown" implementationClass="org.intellij.plugins.markdown.lang.MarkdownFileViewProviderFactory"/>
|
||||
<lang.parserDefinition language="Markdown" implementationClass="org.intellij.plugins.markdown.lang.parser.MarkdownParserDefinition"/>
|
||||
|
||||
@@ -22,7 +22,7 @@ Adds support for working with shell script files
|
||||
</li></ul>]]></description>
|
||||
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
<fileType language="Shell Script" extensions="sh;bash;zsh" hashBangs="sh;bash;zsh" fieldName="INSTANCE" name="Shell Script"
|
||||
<fileType language="Shell Script" extensions="bash;sh;zsh" hashBangs="sh;bash;zsh" fieldName="INSTANCE" name="Shell Script"
|
||||
implementationClass="com.intellij.sh.ShFileType"/>
|
||||
<backgroundPostStartupActivity implementation="com.intellij.sh.fileType.ShShebangFileTypeDetectorActivity"/>
|
||||
<lang.syntaxHighlighter language="Shell Script" implementationClass="com.intellij.sh.highlighter.ShSyntaxHighlighter"/>
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
<lang.braceMatcher language="yaml" implementationClass="org.jetbrains.yaml.YAMLPairedBraceMatcher"/>
|
||||
<lang.findUsagesProvider language="yaml" id="yamlFindUsagesProvider" implementationClass="org.jetbrains.yaml.YAMLFindUsagesProvider"/>
|
||||
<lang.foldingBuilder language="yaml" id="YAMLFoldingBuilder" implementationClass="org.jetbrains.yaml.folding.YAMLFoldingBuilder"/>
|
||||
<fileType name="YAML" implementationClass="org.jetbrains.yaml.YAMLFileType" fieldName="YML" language="yaml" extensions="yml;yaml"/>
|
||||
<fileType name="YAML" implementationClass="org.jetbrains.yaml.YAMLFileType" fieldName="YML" language="yaml" extensions="yaml;yml"/>
|
||||
<editor.backspaceModeOverride language="yaml" implementationClass="com.intellij.codeInsight.editorActions.SmartBackspaceDisabler"/>
|
||||
<lang.psiStructureViewFactory language="yaml" implementationClass="org.jetbrains.yaml.structureView.YAMLStructureViewFactory"/>
|
||||
<langCodeStyleSettingsProvider implementation="org.jetbrains.yaml.YAMLLanguageCodeStyleSettingsProvider"/>
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
<fileType name="Python"
|
||||
language="Python"
|
||||
extensions="py;pyw;"
|
||||
extensions="py;pyw"
|
||||
hashBangs="python"
|
||||
implementationClass="com.jetbrains.python.PythonFileType"
|
||||
fieldName="INSTANCE"/>
|
||||
|
||||
Reference in New Issue
Block a user