主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Alexey Kudravtsev
活动总数
71
最后的活动
2024年10月28日 15:10
成员加入日期
2020年05月26日 16:46
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
23
活动概览
文章(0)
帖子(0)
评论(48)
按最近的活动排序
最近的活动
投票数
创建于
2024年09月24日 10:33
Hello. Indeed, Kotlin files are not highlighted if outside the project source roots, because they require project structure knowledge (dependent modules, set up sdks, etc) to be highlightable. XML ...
社区
IntelliJ IDEA Open API and Plugin Development
How to apply a LineMarkerProviderDescriptor to a kotlin file outside of synced project modules?
0 票
创建于
2024年09月23日 15:30
please use Inlay#getRenderer()#getContextMenuGroup
社区
IntelliJ IDEA Open API and Plugin Development
Showing available intentions for a highlight in a popup at a custom position
0 票
已编辑于
2024年09月23日 14:02
>A user interface where someone clicks and that opens a context menu somewhere else doesn't make sense to me. It would also show quick fixes for any other inspections at that position, not just the...
社区
IntelliJ IDEA Open API and Plugin Development
Showing available intentions for a highlight in a popup at a custom position
0 票
创建于
2024年09月23日 12:31
instead of hacking inlay hint implementation, could you have an inspection which highlights the ranges your want to show hints for? For example, in the screenshot above, highlight the “KeyEvent” id...
社区
IntelliJ IDEA Open API and Plugin Development
Showing available intentions for a highlight in a popup at a custom position
0 票
已编辑于
2024年09月18日 15:24
Yes, you can use com.intellij.codeInsight.daemon.impl.HighlightInfo#findRegisteredQuickFix for finding and filtering quick fixes inside HighlightInfo. As for the position, no, the intentions popup ...
社区
IntelliJ IDEA Open API and Plugin Development
Showing available intentions for a highlight in a popup at a custom position
0 票
创建于
2024年07月15日 11:28
hello. it depends on the definition of “the slowest”. given inspections A,B,C, the A could be the fastest in file x after editing line 2, but the slowest when editing line 4; the B could be the fa...
社区
IntelliJ IDEA Open API and Plugin Development
Performance per inspection
0 票
创建于
2024年06月27日 10:01
override fun isAvailable(project: Project, editor: Editor?, file: PsiFile?): Boolean { RangeHighlighter[] highlighters = DocumentMarkupModel.forDocument(getDocument(), project, true).getAll...
社区
IntelliJ IDEA Open API and Plugin Development
PSI independent quick fix action
0 票
创建于
2024年06月10日 13:35
Hello. in IDEA the daemon is highly concurrent, it can restart and interrupt itself at any moment, so it's hard to tell when it's “done”. THe currently highlighted problems are stored in MarkupMode...
社区
IntelliJ IDEA Open API and Plugin Development
How To get current file problems
0 票
创建于
2024年02月21日 11:24
>From which method of ExternalAnnotator can I do that? collectInformation(), doAnnotate() and apply() are all called from within a read action. Or must it be called in another class/method? If so, ...
社区
IntelliJ IDEA Open API and Plugin Development
Can't call saveDocumentAsIs() from doAnnotate()
0 票
创建于
2024年02月20日 11:32
Hello. During highlighting it's explicitly forbidden to call expensive methods, in particular I/O and write actions, to make the highlighting more parallel and fast. To workaround, you can call “sa...
社区
IntelliJ IDEA Open API and Plugin Development
Can't call saveDocumentAsIs() from doAnnotate()
0 票
«
第一页
‹
上一页
下一页
›
最后
»