Reece Dunn
- Total activity 123
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 13
- Subscriptions 38
-
Created Library has Kotlin runtime bundled into it
PlannedI'm building my plugin with the latest EAP snapshot (212.4321.30) to test it and see if my plugin needs updating to support that snapshot. I'm seeing the following warning: > Task :src:lang-xpath:... -
Created Recommended way to format resource messages.
AnsweredI've been using `BundleBase.message` to format resource bundle messages in my plugin, but this is marked as `@ApiStatus.Internal`. What is the recommended way to use resource bundles in plugin code... -
Created Adding a new unit test framework to the line marker
AnsweredI'm looking at integrating a unit test framework into my plugin. I have seen https://intellij-support.jetbrains.com/hc/en-us/community/posts/206103879-Graphical-integration-of-running-tests-in-plug... -
Created PasswordSafe and multiple users
AnsweredI'm using PasswordSafe in my plugin to store the authentication details for user connections to a database. The service name for the settings are currently keyed to the hostname:port so users with ... -
Created How do I register a language with a test fixture for parser, etc. tests?
AnsweredI'm working on migrating my plugin tests from PlatformLiteFixture to the IdeaTestFixtureFactory framework. I have simple platform tests working, but am now trying to figure out how to get tests tha... -
Created Upgrading from 2020.1 to 2020.2 is saying my plugin is incompatible, not offering an update.
AnsweredI am building my plugin for multiple major versions of IntelliJ [1] and publishing these to the same channel. For each major version of IntelliJ, I'm specifying all subversions as being compatible ... -
Created Running gradle tests with Java 11 for IntelliJ 2020.3 EAP
AnsweredI'm trying to get my plugin (xquery-intellij-plugin) working with the IntelliJ 2020.3 EAP (203.3645-EAP-CANDIDATE-SNAPSHOT). My plugin uses gradle-intellij-plugin. I have made the necessary changes... -
Created Injected language context-aware (attribute schema type) syntax highlighting lexer
AnsweredI'm implementing support for different XSLT schema types (xsl:avt, xsl:expression, xsl:sequence-type, xsl:mode, etc.) as a single language type that I'm using IFileElementType#doParseContents to wo... -
Created Recommended way to get an injected language host from IFileElementType#doParseContents
AnsweredI'm implementing `IFileElementType` for a custom language to get the parser context from the host element in injected language contexts, similar to how `RegExpFileElementType` works in intellij-com... -
Created Adding XML schema attributes to existing elements (e.g. XSLT)
AnsweredI'm adding XML Schema files for vendor extensions to XSLT -- e.g. MarkLogic and Saxon. I can add the elements and attributes to the schema files; this part is working. The issue I'm having is that ...