Files
Max Medvedev 276f5a8dd1 IJPL-797 intellij.platform.langInjection hide internal API
GitOrigin-RevId: f30dcc072a955a57cca7c1b93612975ff8027ef7
2024-09-04 17:26:58 +00:00

91 lines
5.4 KiB
XML

<idea-plugin>
<name>IntelliLang</name>
<id>org.intellij.intelliLang</id>
<category>Other Tools</category>
<vendor>JetBrains</vendor>
<description>
<![CDATA[
Enables user configurable language injection support (originally developed by Sascha Weinreuter sascha.weinreuter@cit.de)
The following features are available:
<ul>
<li>Language injection</li>
<li>Pattern validation</li>
<li>Regular expression support</li>
<li>Language Injections page in the Settings/Preferences dialog.</li>
<li>Ability to edit injected code in the special scratch-pad editor.</l>
</ul>
]]>
</description>
<depends optional="true" config-file="intellilang-xpath-support.xml">XPathView</depends>
<depends optional="true" config-file="intellilang-java-support.xml">com.intellij.modules.java</depends>
<depends optional="true" config-file="intellilang-xml-support.xml">com.intellij.modules.xml</depends>
<extensionPoints>
<extensionPoint name="languageSupport" interface="org.intellij.plugins.intelliLang.inject.LanguageInjectionSupport" dynamic="true"/>
<extensionPoint name="injectionConfig" beanClass="org.intellij.plugins.intelliLang.LanguageInjectionConfigBean" dynamic="true"/>
</extensionPoints>
<extensions defaultExtensionNs="com.intellij">
<intentionAction>
<className>org.intellij.plugins.intelliLang.inject.InjectLanguageAction</className>
<bundleName>messages.LangBundle</bundleName>
<categoryKey>intention.category.language.injection</categoryKey>
<language/>
</intentionAction>
<intentionAction>
<className>org.intellij.plugins.intelliLang.inject.UnInjectLanguageAction</className>
<bundleName>messages.LangBundle</bundleName>
<categoryKey>intention.category.language.injection</categoryKey>
<language/>
</intentionAction>
<intentionAction>
<className>org.intellij.plugins.intelliLang.inject.EditInjectionSettingsAction</className>
<bundleName>messages.LangBundle</bundleName>
<categoryKey>intention.category.language.injection</categoryKey>
<language/>
</intentionAction>
<highlightErrorFilter implementation="org.intellij.plugins.intelliLang.inject.FrankensteinErrorFilter"/>
<daemon.highlightInfoFilter implementation="org.intellij.plugins.intelliLang.inject.FrankensteinErrorFilter"/>
<projectConfigurable groupId="editor" bundle="messages.IntelliLangBundle" key="configurable.InjectionsSettingsUI.display.name"
dynamic="true" id="IntelliLang.Configuration" instance="org.intellij.plugins.intelliLang.InjectionsSettingsUI"
nonDefaultProject="true"/>
<applicationService serviceInterface="com.intellij.psi.impl.source.tree.injected.FallbackInjectionPerformer"
serviceImplementation="org.intellij.plugins.intelliLang.inject.DefaultLanguageInjectionPerformer"/>
<languageInjectionContributor id="TemporaryPlacesInjector"
implementationClass="org.intellij.plugins.intelliLang.inject.TemporaryPlacesInjector" language=""
order="before CommentLanguageInjector"/>
<languageInjectionContributor id="CommentLanguageInjector"
implementationClass="org.intellij.plugins.intelliLang.inject.CommentLanguageInjector"
order="before Default" language=""/>
<languageInjectionContributor id="Default" implementationClass="org.intellij.plugins.intelliLang.inject.DefaultLanguageInjector"
order="last" language=""/>
<applicationService serviceInterface="org.intellij.plugins.intelliLang.Configuration"
serviceImplementation="org.intellij.plugins.intelliLang.Configuration$App"/>
<projectService serviceInterface="org.intellij.plugins.intelliLang.Configuration"
serviceImplementation="org.intellij.plugins.intelliLang.Configuration$Prj"/>
<psi.referenceContributor language="" implementation="org.intellij.plugins.intelliLang.references.InjectedReferencesContributor"/>
<psi.symbolReferenceProvider implementationClass="org.intellij.plugins.intelliLang.references.LanguageReferenceContributor"
hostLanguage=""
hostElementClass="com.intellij.psi.PsiComment"
targetClass="org.intellij.plugins.intelliLang.references.LanguageSymbol"/>
<completion.contributor language="any" implementationClass="org.intellij.plugins.intelliLang.references.LanguageWordInCommentCompletionContributor" />
<registryKey key="org.intellij.intelliLang.comment.completion" defaultValue="true"
description="Enables completion of 'language=' in comments"/>
<lang.foldingBuilder language="UAST" implementationClass="org.intellij.plugins.intelliLang.references.LanguageCommentFolding"/>
<referenceInjector implementation="org.intellij.plugins.intelliLang.references.FileReferenceInjector"/>
<localInspection implementationClass="org.intellij.plugins.intelliLang.references.InjectedReferencesInspection"
enabledByDefault="true" level="ERROR"
language=""
groupBundle="messages.InspectionsBundle" groupKey="inspection.general.tools.group.name"
key="inspection.injected.references.display.name" bundle="messages.IntelliLangBundle"/>
</extensions>
</idea-plugin>