mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
- Set `quickfix.ranking.ml` registry key default to ENABLED. (cherry picked from commit 558dbb7b5c453032a75b1340d261dc0c86388a2d) IJ-CR-170347 GitOrigin-RevId: 7deb92f984ab8dea1b27e3b8d0d011aeb50a8c2b
17 lines
905 B
XML
17 lines
905 B
XML
<idea-plugin package="com.intellij.python.ml.features">
|
|
<dependencies>
|
|
<module name="intellij.platform.ml.logs"/>
|
|
<module name="intellij.python.psi.impl"/>
|
|
</dependencies>
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<statistics.counterUsagesCollector implementationClass="com.intellij.python.ml.features.imports.PyCharmImportsRankingLogs"/>
|
|
<registryKey
|
|
key="quickfix.ranking.ml"
|
|
defaultValue="[IN_EXPERIMENT|ENABLED*|DISABLED]"
|
|
description="Enable ML ranking in quick fix for missing imports"/>
|
|
<postStartupActivity implementation="com.intellij.python.ml.features.imports.QuickfixRankingModelLoading"/>
|
|
<applicationService serviceInterface="com.jetbrains.python.codeInsight.imports.ImportChooser"
|
|
serviceImplementation="com.intellij.python.ml.features.imports.PyMLImportChooser" overrides="true"/>
|
|
</extensions>
|
|
</idea-plugin>
|