mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
153 modules which contain classes used from external plugins from the Marketplace are marked as public. This is needed to ensure that it'll be possible to use that API after converting code from these external plugins to content modules. GitOrigin-RevId: dc48e8970041fddd3bf50d280711e95ce9e9ad9b
29 lines
1.7 KiB
XML
29 lines
1.7 KiB
XML
<idea-plugin visibility="public" 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>
|