Enabling plugin features (extensions) when another plugin is not present Follow
Answered
With my XQuery plugin (https://plugins.jetbrains.com/plugin/8612-xquery-intellij-plugin) I am working on XPath support which conflicts with a plugin provided in the base IntelliJ installation.
I would like to be able to say "only enable XPath support in my plugin if the IntelliJ XPath plugin is not present".
How can I achieve this?
Please sign in to leave a comment.
Please see extension point com.intellij.ide.plugins.PluginReplacement, or check at runtime com.intellij.ide.plugins.PluginManagerCore#isDisabled
Thanks for the API references.