H Raven
- Total activity 99
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 8
- Subscriptions 22
-
Edited Plugin conflicts with IDEA CORE
AnsweredHello, I've encountered a strange error, that I cannot use my language plugin in Rider (tested only Rider & IntelliJ) Verification results for compability shows no problems: Yet when I try to insta... -
Created Formatter alignment - unsure about tutorial explanation
AnsweredHello,I'm strugling with understanding tutorial for language plugin of Formatter's alignment/wrap. I understand, that elements sharing the same alignment instance do align, what I don't understand ... -
Created Indexing process should not rely on non-indexed file data
AnsweredHello, I'm fighting with: "java.lang.Throwable: Indexing process should not rely on non-indexed file data." What I thought it might cause is, when after changing a file, which fires up re-index, I'... -
Edited Completion contributor hard-coded trims '@'
AnsweredHello again,hopefully last question for some time, but with CompletionContributor I've run into another issue, that I cannot use it for elements starting with a '@' char. I've found that reason is ... -
Created Reference Contributor
AnsweredHello, I'm having troubles with registered reference contributor. I've created the most simple pattern -> PlatformPatterns.psiElement(), which I thought should offer completion everywhere in the co... -
Created Formatter NoneIndent
AnsweredHello,I'm trying to build a Formatter, but can't figure out Indents.When I simply try to build blocks, giving every single one Indent: NONE, it still formats to 8 spaces.I suppose, that it has some... -
Created TypeScript resolve referenced Interface
AnsweredHello, I'm unable to find a way to resolve Interface fields within PSI.When I have f.e. two Interfaces: interface A { field: string;}interface B { a: A;} When I get PSI of B, I get JSTypeImpl... -
Created Cannot resolve extended Interface of PsiElement
AnsweredHello, I'm trying to create extension for JS/TS, but for some reason, I cannot use PsiTreeUtil class: PsiTreeUtil.findChildrenOfType(root, JSObjectLiteralExpression::class.java); Editor says, there... -
Created CustomLanguageHint - Parameter hint
Hello, I'm building a custom language plugin and I've run in kind of a brick wall of Parameter hints (ctrl + p) and apart from that it has to be done via ParameterInfoHandler I don't know what next...