Kerry
- Total activity 65
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 16
-
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 ... -
Edited Can I find the colors and font style currently being used to render a particular PsiElement?
AnsweredI found an old question that looks like a similar topic: https://intellij-support.jetbrains.com/hc/en-us/community/posts/206801595-Is-there-an-API-for-getting-the-color-and-font-style-of-a-characte... -
Edited PsiFile and PsiFile.findElementAt() only providing useful info for a few languages.
AnsweredI'm trying to create an Intellij plugin that does the same thing as a VSCode extension I recently created, Ligatures Limited, which is designed prevent font coding ligatures from fonts like Fira Co... -
Created Converting VSCode extension to Intellij plugin questions
AnsweredI've just written my first extension for Visual Studio Code (https://marketplace.visualstudio.com/items?itemName=kshetline.ligatures-limited). That's working well, and now I'm trying to create a s...