Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Alexey Kudravtsev
Total activity
71
Last activity
October 28, 2024 15:10
Member since
May 26, 2020 16:46
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
23
Activity overview
Articles (0)
Posts (0)
Comments (48)
Sort by recent activity
Recent activity
Votes
Created
September 24, 2024 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
How to apply a LineMarkerProviderDescriptor to a kotlin file outside of synced project modules?
0 votes
Created
September 23, 2024 15:30
please use Inlay#getRenderer()#getContextMenuGroup
Community
IntelliJ IDEA Open API and Plugin Development
Showing available intentions for a highlight in a popup at a custom position
0 votes
Edited
September 23, 2024 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...
Community
IntelliJ IDEA Open API and Plugin Development
Showing available intentions for a highlight in a popup at a custom position
0 votes
Created
September 23, 2024 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...
Community
IntelliJ IDEA Open API and Plugin Development
Showing available intentions for a highlight in a popup at a custom position
0 votes
Edited
September 18, 2024 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
Showing available intentions for a highlight in a popup at a custom position
0 votes
Created
July 15, 2024 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...
Community
IntelliJ IDEA Open API and Plugin Development
Performance per inspection
0 votes
Created
June 27, 2024 10:01
override fun isAvailable(project: Project, editor: Editor?, file: PsiFile?): Boolean { RangeHighlighter[] highlighters = DocumentMarkupModel.forDocument(getDocument(), project, true).getAll...
Community
IntelliJ IDEA Open API and Plugin Development
PSI independent quick fix action
0 votes
Created
June 10, 2024 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...
Community
IntelliJ IDEA Open API and Plugin Development
How To get current file problems
0 votes
Created
February 21, 2024 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, ...
Community
IntelliJ IDEA Open API and Plugin Development
Can't call saveDocumentAsIs() from doAnnotate()
0 votes
Created
February 20, 2024 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...
Community
IntelliJ IDEA Open API and Plugin Development
Can't call saveDocumentAsIs() from doAnnotate()
0 votes
«
First
‹
Previous
Next
›
Last
»