H Raven
- Total activity 99
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 8
- Subscriptions 22
-
Edited Formatter losing indent with code selection
AnsweredHello,question about formatter - when formatting whole code all looks ok and reformatting a file changes nothing.“aa” is a statement consisting of “aa” expression and “\n” as END_STMT token - this ... -
Created Check if app is loaded
AnsweredHi,I'm creating a ToolWindow which requires parsing PsiFile and looking into idicies.This I solved by moving that logic into ReadAction:ReadAction.nonBlocking<JComponent> { ...parsePsi } ... -
Edited How create Symbol for Psi
AnsweredHello, I'm toying with newer Symbol API, but cannot get to how to correctly create Symbols for it.At https://plugins.jetbrains.com/docs/intellij/declarations-and-references.html#own-referencesThere... -
Created GrammarKit - statement struggle with inline function
AnsweredHello, I'm start hard with adding support for lambda (inline functions) into bnf grammar. I'll simplify as much as possible. Language is indent based with optional semicolons so I generate endStmt ... -
Edited Swing UI elements not initialized
AnsweredHello,in my plugin I'm using some forms (f.e. for Language settings) created by Intellij RMB -> New -> Swing UI Designer -> Create Dialog Class But that generated component in some cases fails that... -
Edited Saving custom Library globally
AnsweredHello, I'm strugling with Custom Library - global at least. I've managed to create and use project level Library by: val table = LibraryTablesRegistrar.getInstance().getLibraryTable(project)val new... -
Created Annotator message formatting
AnsweredGood day, today I'm trying to format messages for ErrorAnnotator and cannot find how to do it. An example I've seen in Kotlin is Type mismatch from method call like: Yet I cannot find how is this ... -
Edited getChildAttributes caret position
AnsweredHello, is it possible to somehow get caret position when Block is deciding Indentation within getChildAttributes method? I know I can get caret via Editor, but problem is, what if there are multipl... -
Edited Formatter - comment settings based on position
AnsweredHello again, I'm looking for help with blank lines formatter settings of comments. I'll try to simplify as possible. I've set up a formatter that has 1 blank line between variables and 2 blank line...