mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 12:17:12 +07:00
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
29 lines
1.4 KiB
XML
29 lines
1.4 KiB
XML
<idea-plugin package="com.intellij.python.community.plugin.impl">
|
|
<!--Plugin for other (not PyCharm) IDEs, including IU-->
|
|
<dependencies>
|
|
<!--Any IDE but NOT PyCharm-->
|
|
<plugin id="com.intellij.modules.python-in-non-pycharm-ide-capable"/>
|
|
|
|
<module name="intellij.python.community.impl"/>
|
|
</dependencies>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<applicationService serviceInterface="com.jetbrains.python.run.PyCommonOptionsFormFactory"
|
|
serviceImplementation="com.intellij.python.community.plugin.impl.run.PyPluginCommonOptionsFormFactory"/>
|
|
<applicationService serviceInterface="com.jetbrains.python.run.PyCommonFragmentsBuilder"
|
|
serviceImplementation="com.intellij.python.community.plugin.impl.run.PyPluginCommonFragmentsBuilder"/>
|
|
</extensions>
|
|
|
|
<actions>
|
|
<action id="PyManagePackages" class="com.intellij.python.community.plugin.impl.packaging.PyManagePackagesAction">
|
|
<add-to-group group-id="ToolsMenu" anchor="last"/>
|
|
</action>
|
|
<action id="RunPythonToolwindowAction" class="com.intellij.python.community.plugin.impl.RunPythonToolwindowAction">
|
|
</action>
|
|
</actions>
|
|
|
|
<applicationListeners>
|
|
<listener class="com.intellij.python.community.plugin.impl.facet.PythonSdkTableListener" topic="com.intellij.openapi.projectRoots.ProjectJdkTable$Listener"/>
|
|
</applicationListeners>
|
|
|
|
</idea-plugin> |