mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
Each tool (uv, poetry) now has `common` and `backend` part. `common` has icons because we need them both on the front and on the back. We might need to create `front` module also if we wouldn't be able to use icons in compose. GitOrigin-RevId: 560b5aa67e4e747a1653ad6e4f780301a3fae289
33 lines
1.5 KiB
XML
33 lines
1.5 KiB
XML
<idea-plugin>
|
|
<dependencies>
|
|
<module name="intellij.python.sdk"/>
|
|
<module name="intellij.python.community.execService"/>
|
|
<module name="intellij.python.community.impl.poetry.common"/>
|
|
<module name="intellij.python.community.impl.uv.common"/>
|
|
</dependencies>
|
|
|
|
<extensionPoints>
|
|
<extensionPoint qualifiedName="Pythonid.evoTreeElementProvider"
|
|
interface="com.intellij.python.sdk.ui.evolution.ui.EvoSelectSdkProvider"
|
|
dynamic="true"/>
|
|
</extensionPoints>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<statusBarWidgetFactory id="EvoPySdkStatusBarWidget"
|
|
implementation="com.intellij.python.sdk.ui.evolution.ui.PySdkStatusBarWidgetFactory"
|
|
order="before Notifications, before git, after CodeStyleStatusBarWidget, after pythonInterpreterWidget"/>
|
|
|
|
<registryKey key="python.evolution.widget" defaultValue="false" restartRequired="true"
|
|
description="Enables the 'Evo Module Python Interpreter' widget in the status bar (PoC)"/>
|
|
</extensions>
|
|
|
|
<extensions defaultExtensionNs="Pythonid">
|
|
<evoTreeElementProvider id="VenvEvoProvider"
|
|
implementation="com.intellij.python.sdk.ui.evolution.tool.pip.ui.VenvSelectSdkProvider"/>
|
|
|
|
<evoTreeElementProvider id="AutoconfigEvoProvider"
|
|
order="last"
|
|
implementation="com.intellij.python.sdk.ui.evolution.ui.AutoconfigSelectSdkProvider"/>
|
|
</extensions>
|
|
</idea-plugin>
|