主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Karol Lewandowski
活动总数
2850
最后的活动
2025年02月06日 11:01
成员加入日期
2022年01月03日 14:12
关注
0 名用户
关注者数
3 名用户
投票数
43
订阅数
1086
活动概览
文章(0)
帖子(0)
评论(1721)
按最近的活动排序
最近的活动
投票数
已编辑于
2023年04月12日 07:32
Hi Vincent, You should use HTML links with a special protocol. Example: <a href='psi_element://your element identifier/path/something else that allows to identity it'>Text</a> Protocol constant: ...
社区
IntelliJ IDEA Open API and Plugin Development
How do I specify which element is linked to in the documentation
1 票
创建于
2023年04月12日 07:11
Hi, Take a look at this part of the CompletionContributor‘s Javadoc:https://github.com/joewalnes/idea-community/blob/master/platform/lang-api/src/com/intellij/codeInsight/completion/CompletionCont...
社区
IntelliJ IDEA Open API and Plugin Development
Getting code completions with a specific return type
1 票
创建于
2023年04月11日 08:14
Hi Artur, Consumer deprecation has been changed to an obsolete API: https://github.com/JetBrains/intellij-community/commit/a602324a2fb9ad74a1bcb4c41d6f5ebe1d9fe84c You can ignore this warning, as i...
社区
IntelliJ IDEA Open API and Plugin Development
ErrorReportSubmitter replacement without deprecated `com.intellij.util.Consumer` reference
1 票
创建于
2023年04月11日 07:35
Hi Eric, It seems that the “release” package doesn’t work because of the code instrumentation. See ContentImpl.getComponent(): public @NotNull JComponent getComponent() { return myComponent; } ...
社区
IntelliJ IDEA Open API and Plugin Development
IntelliJ Plugin, createContent fails in released Plugin
1 票
已编辑于
2023年04月03日 14:21
Hi, Quick intro: The main requirement for lexers is to be able to split the file text into language tokens as they appear in the file, without any order/syntax validation. For example: any + ++ re...
社区
IntelliJ IDEA Open API and Plugin Development
Custom Language: Check syntax with lexer
1 票
创建于
2023年04月03日 06:33
Hi, You have to add it to a PsiDirectory. It is answered in SDK docs in the PSI Files section: https://plugins.jetbrains.com/docs/intellij/psi-files.html#how-do-i-create-a-psi-file
社区
IntelliJ IDEA Open API and Plugin Development
How to save a PsiFile to project
1 票
已编辑于
2023年04月03日 06:30
Hi, It can be easily found in the intellij-community sources by following one of the API exploration techniques: Search by UI Text. If you search for case sensitive "Type mismatch" phrase in produc...
社区
IntelliJ IDEA Open API and Plugin Development
Annotator message formatting
1 票
已编辑于
2023年03月29日 12:17
Why wouldn't it matter what getReference() returns? It returns a PsiReference instance that resolves the declaration. If it's a PsiElement being a PsiReference at the same time, or separate PsiRefe...
社区
IntelliJ IDEA Open API and Plugin Development
Custom Language: References in same file
1 票
已编辑于
2023年03月29日 11:32
I am not quite sure what you mean by that, because I calculate the element only when 'getReference' is called. This is the problem. It is a performance issue as PsiElement.getReference() may be c...
社区
IntelliJ IDEA Open API and Plugin Development
Custom Language: References in same file
1 票
创建于
2023年03月29日 11:08
Hi, The PsiElement which holds the ID in the usage overrides the method 'getReference' which in turn returns a PsiReference containing the PsiElement of the ID in the declaration. You shouldn't p...
社区
IntelliJ IDEA Open API and Plugin Development
Custom Language: References in same file
1 票
«
第一页
‹
上一页
下一页
›
最后
»