Files
openide/commandInterface/resources/intellij.commandInterface.xml
Leonid Shalupov ae234e5fb1 IJI-2422: community: move resources under resources root
GitOrigin-RevId: c7d393fd8a9a074970bc7e0de3325bdee4ec070b
2025-02-05 10:14:39 +00:00

29 lines
1.7 KiB
XML

<idea-plugin package="com.intellij.commandInterface">
<dependencies>
<!-- uses messages.PyBundle -->
<plugin id="com.intellij.modules.python"/>
</dependencies>
<!--
Extension points to support gnu command line language.
See {@link com.intellij.commandInterface.commandLine}
-->
<extensions defaultExtensionNs="com.intellij">
<lang.parserDefinition language="CommandLine"
implementationClass="com.intellij.commandInterface.commandLine.CommandLineParserDefinition"/>
<lang.syntaxHighlighter language="CommandLine"
implementationClass="com.intellij.commandInterface.commandLine.CommandLineSyntaxHighlighter"/>
<psi.referenceContributor language="CommandLine"
implementation="com.intellij.commandInterface.commandLine.CommandLineReferenceContributor"/>
<lang.elementManipulator forClass="com.intellij.commandInterface.commandLine.CommandLineElement"
implementationClass="com.intellij.commandInterface.commandLine.CommandLineElementManipulator"/>
<localInspection language="CommandLine" shortName="CommandLineInspection" bundle="messages.CommandInterfaceBundle"
key="commandLine.inspection.name"
enabledByDefault="true" level="WARNING"
groupKey="INSP.GROUP.python"
groupBundle="messages.PyBundle"
implementationClass="com.intellij.commandInterface.commandLine.CommandLineInspection"/>
<lang.documentationProvider language="CommandLine"
implementationClass="com.intellij.commandInterface.commandLine.CommandLineDocumentationProvider"/>
</extensions>
</idea-plugin>