mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 23:31:05 +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
23 lines
1015 B
XML
23 lines
1015 B
XML
<idea-plugin>
|
|
<dependencies>
|
|
<module name="intellij.python.community"/>
|
|
<module name="intellij.python.community.execService"/>
|
|
<module name="intellij.python.sdk"/>
|
|
<module name="intellij.python.sdk.ui"/>
|
|
<module name="intellij.python.pyproject"/>
|
|
<module name="intellij.python.common"/>
|
|
<module name="intellij.python.community.execService.python"/>
|
|
</dependencies>
|
|
|
|
<extensions defaultExtensionNs="Pythonid">
|
|
<evoTreeElementProvider id="HatchEvoProvider"
|
|
order="after CondaEvoProvider"
|
|
implementation="com.intellij.python.hatch.sdk.evolution.HatchSelectSdkProvider"/>
|
|
</extensions>
|
|
<extensions defaultExtensionNs="com.intellij.python.pyproject.model">
|
|
<tool implementation="com.intellij.python.hatch.impl.HatchTool"/>
|
|
</extensions>
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<python.common.toolToIconMapper implementation="com.intellij.python.hatch.impl.HatchIdMapper"/>
|
|
</extensions>
|
|
</idea-plugin> |