Why are did all my intentionAction elements in plugin.xml start showing all red?

Answered

In my plugin, sometime after I started using 2019 EAP, intentionActionelements inplugin.xmlstarted showing all red, everything works as before.

Is there another way to define intention actions or in another format?

    <extensions defaultExtensionNs="com.intellij">
        <intentionAction>
            <className>com.vladsch.idea.multimarkdown.intentions.flexmark.ToggleFlexmarkExampleIgnoreIntention</className>
            <bundleName>com.vladsch.idea.multimarkdown.intentions.IntentionsBundle</bundleName>
            <categoryKey>intention.category.flexmark</categoryKey>
            <descriptionDirectoryName>ToggleFlexmarkExampleIgnoreIntention</descriptionDirectoryName>
        </intentionAction>

        <intentionAction>
            <className>com.vladsch.idea.multimarkdown.intentions.flexmark.EditFlexmarkExampleOptionsIntention</className>
            <bundleName>com.vladsch.idea.multimarkdown.intentions.IntentionsBundle</bundleName>
            <categoryKey>intention.category.flexmark</categoryKey>
            <descriptionDirectoryName>EditFlexmarkExampleOptionsIntention</descriptionDirectoryName>
        </intentionAction>
0
2 comments

Hi, it was a regression which is already fixed now https://youtrack.jetbrains.com/issue/IDEA-208354

0

Thanks Yann. I ignored it when first saw it thinking it was regression and it will be caught and fixed shortly. It happens a lot to me since I mostly work with a build from intellij-master branch built at least once a day and get to see regression bugs often. Usually they are gone next update or a day later. 

After it being part of the build for this long I decided to confirm just in case defining intention actions this way was not being phased out.

0

Please sign in to leave a comment.