Files
openide/python/IntelliLang-python/resources/intellij.python.langInjection.xml
Ilya.Kazakevich 9d4751f238 [python, ds, jupyter]: Migrate Python support to V2
Layout:

  JPS modules
  `intellij.python.community`
  `intellij.python.community.impl`
  `intellij.python.parser`
  `intellij.python.psi`
  `intellij.python.psi.impl`
  `intellij.python.ast`
  use package `com.jetbrains.python`
  and go to `intellij.python.community.impl` v2 module

  JPS module
  `intellij.python`
  uses package `com.intellij.python.pro`
  and goes to `intellij.python/pro` v2 module

  Both v2 modules (along with lots of others) come with
  `PythonId` (prof) or `PythonCore` (community) plugins

  DS bundles  `intellij.python.community.impl`

  Idea and other Mini IDEs get `PythonCore` or `PythonId` plugin that bundle modules for Idea and mini IDEs

GitOrigin-RevId: 98f418c52d90d51b9adf3250c561f2c36c767e2d
2024-01-22 20:26:58 +00:00

15 lines
802 B
XML

<idea-plugin package="com.intellij.python.langInjection">
<dependencies>
<plugin id="org.intellij.intelliLang"/>
<module name="intellij.python.community.impl"/>
</dependencies>
<extensions defaultExtensionNs="org.intellij.intelliLang">
<languageSupport implementation="com.intellij.python.langInjection.PyLanguageInjectionSupport"/>
<injectionConfig config="resources/pyInjections.xml"/>
</extensions>
<extensions defaultExtensionNs="com.intellij">
<patterns.patternClass className="com.intellij.python.langInjection.PythonPatterns" alias="py"/>
<multiHostInjector implementation="com.intellij.python.langInjection.PyConfigurationInjector"/>
<multiHostInjector implementation="com.intellij.python.langInjection.PyTemporaryInjector"/>
</extensions>
</idea-plugin>