我用于 xml 完成的 intellij 插件在 Intellij Ultimate 版本上不起作用

My intellij plugin for xml completion not work on Intellij Ultimate version

它在 Intellij Community Edition 版本上运行完美。

关注

在 Intellij 终极版上

我的插件没有推荐。我的代码从不 运行 终极版.

这是我的插件配置

<extensions defaultExtensionNs="com.intellij">
<completion.contributor language="XML"
implementationClass="com.ccnode.codegenerator.view.MapperSqlCompletionContributor"/>

我的插件源代码在https://github.com/gejun123456/MyBatisCodeHelper
我怎样才能在终极版上解决这个问题?

似乎另一个 plug-in 已经为这个特定的代码片段实现并注册了语言注入,并被用来代替你的 plug-in。

第一个成功的注入实施将起作用,您可以将您的 languageInjector 配置为 firstbefore 另一个 plug-in 注入器:

<languageInjector implementation="com.InjectorImpl" order="first"/>

<languageInjector implementation="com.InjectorImpl" order="before" id="other.injector.id"/>