Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Simon Stratmann
Total activity
165
Last activity
March 12, 2024 09:23
Member since
September 06, 2018 06:41
Following
0 users
Followed by
0 users
Votes
13
Subscriptions
47
Activity overview
Posts (40)
Comments (65)
Sort by recent activity
Recent activity
Votes
Created
October 14, 2022 04:52
Argh, I should've thought of that myself. Thanks, Yann Cebron That helped. I'll make the changes you proposed, thanks for looking.
Community
IntelliJ IDEA Open API and Plugin Development
How to diagnose UI freezes
0 votes
Created
October 12, 2022 10:02
Nobody? I can't be the only one with this problem. I don't ask for a solution, just for advice how to get there (although a solution would be nice...). The code is here: https://gitlab.com/ppiag/in...
Community
IntelliJ IDEA Open API and Plugin Development
How to diagnose UI freezes
0 votes
Created
October 07, 2022 11:42
You may be able to do this using ApplicationStarter but you'd need to write a custom plugin. You can also check https://www.jetbrains.com/help/idea/working-with-the-ide-features-from-command-line.h...
Community
IntelliJ IDEA Open API and Plugin Development
Execute IntelliJ Indexing Programmatically
0 votes
Created
May 31, 2022 07:37
Hi Karol, That's great. Java 11 is enough for me for now. I may switch at some point when 2022.2 is established. Thanks for the quick response.
Community
IntelliJ IDEA Open API and Plugin Development
Recommendations for upgrading to Java 17 for 2022.2
0 votes
Created
May 10, 2022 17:15
Thanks for the quick response. That worked great! For future reference: I had to check the type of the ElementDescriptionLocation. If it's UsageViewTypeLocation it's the type shown (in the screensh...
Community
IntelliJ IDEA Open API and Plugin Development
Name / description of element not shown in usage dialog when using custom FindUsagesHandler
0 votes
Edited
May 10, 2022 16:18
Hi Yann Cebron, that doesn't work for me. I'd have to extend UsageInfo but I don't have any PsiElement that represents the usage. The "usage" is actually an external file. The whole system around U...
Community
IntelliJ IDEA Open API and Plugin Development
Name / description of element not shown in usage dialog when using custom FindUsagesHandler
0 votes
Created
May 02, 2022 17:00
ReferenceUsage doesn't extend UsageInfo. Extending it would clash with UsageInFile. I can give it a try though.
Community
IntelliJ IDEA Open API and Plugin Development
Name / description of element not shown in usage dialog when using custom FindUsagesHandler
0 votes
Created
May 02, 2022 15:53
https://gitlab.com/-/snippets/2310413
Community
IntelliJ IDEA Open API and Plugin Development
Name / description of element not shown in usage dialog when using custom FindUsagesHandler
0 votes
Created
May 02, 2022 15:22
if (referencedElement.getLanguage() != JavaLanguage.INSTANCE) { return; } final UsageDataProvider dataProvider = ReadAction.compute(referencedElement::getProject).getServic...
Community
IntelliJ IDEA Open API and Plugin Development
Name / description of element not shown in usage dialog when using custom FindUsagesHandler
0 votes
Created
April 06, 2022 14:08
If anybody else by any chance finds this threads and wonders (like me) how to show a preview: I let my Usage implement UsageProvider and return this: @Override public @Nullable Object getDat...
Community
IntelliJ IDEA Open API and Plugin Development
Grouping results of CustomUsageSearcher
0 votes
«
First
‹
Previous
Next
›
Last
»