mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 19:28:23 +07:00
and considered before the dedicated injector for f-strings takes place. Also, PyInjectionUtil.registerStringLiteralInjection now takes care of f-string injections itself.
14 lines
846 B
XML
14 lines
846 B
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
|
|
<idea-plugin>
|
|
<extensions defaultExtensionNs="org.intellij.intelliLang">
|
|
<languageSupport implementation="com.jetbrains.python.intelliLang.PyLanguageInjectionSupport"/>
|
|
<injectionConfig config="resources/pyInjections.xml"/>
|
|
</extensions>
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<patterns.patternClass className="com.jetbrains.python.patterns.PythonPatterns" alias="py"/>
|
|
<!-- These must be registered before PyFStringsInjector, otherwise it won't allow to inject anything else inside f-strings -->
|
|
<multiHostInjector implementation="com.jetbrains.python.intelliLang.PyConfigurationInjector" order="before f-strings"/>
|
|
<multiHostInjector implementation="com.jetbrains.python.intelliLang.PyTemporaryInjector" order="before f-strings"/>
|
|
</extensions>
|
|
</idea-plugin> |