Kerry
- Total activity 65
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 16
-
Created How do I use Markdown CSS to change colors *used inside code fences*?
AnsweredIDEA gives you an ability to change how Markdown looks here:…and I've added rules that I'd found on Github for making IDEA Markdown previews follow (more or less) Github styling. But the changes ar... -
Created How to suppress spellchecking in HTML, one statement or block of statements at a time
AnsweredI'm looking for something that would suppress spell checking on a single line, or range of lines, in an HTML file. Something that would work like this: <!-- noinspection SpellCheckingInspection -->... -
Created Out of the blue, 283 (!) "Failed to read class" compatibility problems with IU-202.6397.9
AnsweredI'm trying to update a plugin that I've submitted before as an "alpha" release as an updated "stable" release. When I first uploaded my update, I soon got a message back that I had an incompatibili... -
Edited Kotlin: Getting "Copying or archiving duplicate paths..." deprecation warnings when building plugin
AnsweredI'm writing my plugin in Kotlin, and using a build.gradle.kts file to setup the Gradle build. While in general I don't find converting from Java to Kotlin difficult at all, the differences between ... -
Created What's the best way to include user documenation with your plugin?
AnsweredIn the plugin.xml file for a plugin, there's a description section like this: <description><![CDATA[ My <b>awesome</b> plugin ]]></description> I've seen a few examples of plugins that use this d... -
Created Using a LanguageTextField in a Preferences dialog - Tab key issue
CompletedI'm creating a plugin where some of the settings will be handled by entering JSON. I'm using a LanguageTextField, and it's working fairly well, but I can't use the Tab key for indenting text - the ... -
Created How can I tell if the content of a LanguageTextField is valid?
AnsweredI'm trying to use a LanguageTextField to enter a JSON configuration. Visually I can see, via syntax highlighting, whether or not the contents of the field are valid JSON. Programmatically, however,... -
Created How do I turn off these end-of-line inlay hints?
AnsweredI'd like to disable these inlay hints, and others like them: There's also a similar hint elsewhere that says "^lambda". I've unchecked this: For the specific language shown here, Kotlin, the top-... -
Edited How do I use SyntaxHighlighter.getTokenHighlights(type) to return context-specific text attributes?
In the code below, syntax highlighting displays, for example, event and editor in two different colors. I can't, however, get any of that specific color information using an instance of SyntaxHigh... -
Edited Is there any way to improve spell check for Kotlin regexes?
AnsweredIn the following code, the spell checker seems totally unaware that what it's spellchecking is a regex, so it's treating letters from escape sequences as the first letters of not-really misspelled ...