Kerry
- 活动总数 65
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 16
-
创建于 How do I use Markdown CSS to change colors *used inside code fences*?
已回答IDEA 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... -
创建于 How to suppress spellchecking in HTML, one statement or block of statements at a time
已回答I'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 -->... -
创建于 Out of the blue, 283 (!) "Failed to read class" compatibility problems with IU-202.6397.9
已回答I'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... -
已编辑于 Kotlin: Getting "Copying or archiving duplicate paths..." deprecation warnings when building plugin
已回答I'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 ... -
创建于 What's the best way to include user documenation with your plugin?
已回答In 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... -
创建于 Using a LanguageTextField in a Preferences dialog - Tab key issue
已完成I'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 ... -
创建于 How can I tell if the content of a LanguageTextField is valid?
已回答I'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,... -
创建于 How do I turn off these end-of-line inlay hints?
已回答I'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-... -
已编辑于 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... -
已编辑于 Is there any way to improve spell check for Kotlin regexes?
已回答In 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 ...