mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-23 15:49:31 +07:00
These modules and their classes don't have external usages, so they shouldn't be made 'public' at least for now. The 'namespace' is also set to 'jetbrains' for plugins which contain such modules or modules which use them to allow 'internal' visibility to work. GitOrigin-RevId: 198007e49320075dc27faadde6963e98332296a4
28 lines
1.4 KiB
XML
28 lines
1.4 KiB
XML
<idea-plugin visibility="internal">
|
|
<!--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 resource-bundle="messages.PyBundle">
|
|
<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> |