Plugin conflicts with IDEA CORE
Answered
Hello,
I've encountered a strange error, that I cannot use my language plugin in Rider (tested only Rider & IntelliJ)
Verification results for compability shows no problems:
Yet when I try to install this new plugin's version to Rider 2022.3 it throws an error:


I've even updated IntelliJ version in build.gradle to newly one:
id 'org.jetbrains.intellij' version '1.11.0'
But error remains. Does anyone have an idea what it might be causing?
Also for some reason that problems occurs after restarting Rider -> plugin can be installed (at least from local file), it does parse it's files, but after restarting IDE this happens.
Please sign in to leave a comment.
Is there anything in the IDE log file? does it still happen if you remove `<incompatible-with>` from your plugin.xml?
I've deleted <incompatible>, but didn't help.
Looking into idea logs I can't find anything gdscript specific, but there is something I'm not sure if could be the reason:
Thats the only exception I've found.
But between two logs (below) of "loaded" and "to disable" there are only info about other plugins and such - no error or exceptions at all.
I'll later try to reset latests commits one by one if there's some specific change it started it - but I've never actually used it in Rider until now.
I've finally localized the issue - the conflict was at FileType name property.
I've registered 3rd FileType a while ago as:
And it seems that name="Project file" was the conflict and whole issue.
Thanks for the update.