mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
It doesn't work. Sad, but true. GitOrigin-RevId: c6cf4f2971ce813a2ce18afb2dcee22c2c5dad75
21 lines
845 B
XML
21 lines
845 B
XML
<idea-plugin>
|
|
<dependencies>
|
|
<!--Any IDE but NOT PyCharm-->
|
|
<plugin id="com.intellij.modules.python-in-non-pycharm-ide-capable"/>
|
|
<!-- That is Mini-ide -->
|
|
<plugin id="com.intellij.modules.python-in-mini-ide-capable"/>
|
|
<!-- and compatible with Python Core -->
|
|
<plugin id="com.intellij.modules.python-core-capable"/>
|
|
<!-- and is Rider -->
|
|
<plugin id="com.intellij.modules.rider"/>
|
|
<!-- for library facet etc -->
|
|
<module name="intellij.python.community.plugin.impl"/>
|
|
</dependencies>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<completion.contributor language="Python" implementationClass="com.intellij.python.community.plugin.minorRider.PythonRiderLegacyCompletionContributor"
|
|
id="legacy"
|
|
order="last"/>
|
|
</extensions>
|
|
</idea-plugin>
|