H Raven
- 活动总数 99
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 8
- 订阅数 22
-
创建于 SDK in other IDE is not indexed
已回答Hello I've got question about SDK. I have plugin where SDK contains built-in classes / methods and need to add it and index it. In IntelliJ I've used regular IDE project settings to add it, but tha... -
已编辑于 Plugin conflicts with IDEA CORE
已回答Hello, 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... -
创建于 Formatter alignment - unsure about tutorial explanation
已回答Hello,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 ... -
创建于 Indexing process should not rely on non-indexed file data
已回答Hello, 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'... -
已编辑于 Completion contributor hard-coded trims '@'
已回答Hello 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 ... -
创建于 Reference Contributor
已回答Hello, 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... -
创建于 Formatter NoneIndent
已回答Hello,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... -
创建于 TypeScript resolve referenced Interface
已回答Hello, 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... -
创建于 Cannot resolve extended Interface of PsiElement
已回答Hello, 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... -
创建于 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...