Simon Stratmann

- Total activity 117
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 9
- Subscriptions 33
-
Created Recommendations for upgrading to Java 17 for 2022.2
AnsweredAre there any best practices or recommendations on how to upgrade to Java 17, specifically on how to support older versions? If I switch to Java 17 now I guess the same build will not be supported ... -
Edited Name / description of element not shown in usage dialog when using custom FindUsagesHandler
AnsweredI have a custom FindUsagesHandler for PsiLiteralExpression elements and a CustomUsageSearcher to find the usages. Everything works fine but in the place where usually the description of the element... -
Created Restarting inlay hints provider
AnsweredHow can I trigger the inlay hints to be computed again for any open (selected) editors? DaemonCodeAnalyzer.getInstance(project).restart(); doesnt't work. I also tried: DaemonCodeAnalyzerImpl codeAn... -
Edited Grouping results of CustomUsageSearcher
AnsweredI have added a CustomUsageSearcher which returns non-navigatable results. But every result is shown in the usage view tree as a leaf below a "1 results" node: I used EP com.intellij.fileStructureG... -
Edited "Action is not performed because target component is not showing"
AnsweredI'm showing a notification with an action. The action is supposed to open a URL. I get the warning: 2022-03-29 10:02:33,898 [ 33512] WARN - api.actionSystem.ex.ActionUtil - Action is not perf... -
Created Adding a banner to a window - com.intellij.openapi.ui.Banner is package-private
AnsweredThe UI Guideline describes banners: https://jetbrains.github.io/ui/controls/banner/ I want to add such a banner to my tool window but com.intellij.openapi.ui.Banner is package-private for some reas... -
Created Is it possible ro replace an extension with my own
AnsweredI would like to replace the logic of a built-in extension with my own. For that I would need to declare the existing extension to not be used. Is that possible? -
Edited Adding custom non-navigatable results to CustomUsageSearcher
AnsweredI'm trying to add usages that are outside the project and therefore are non-navigateble. In my first attempt I returned a very naive UsageInfo which basically only has a text and is valid and non-n... -
Created Configuring pattern for log file in sandbox
AnsweredHow do I set the pattern of the log written to idea.log when running my plugin in a sandbox? I'm setting the log level via a system property but the length of the class part is too short (30 charac... -
Created PsiReferenceContributor not triggered for certain element (GherkinTableCellImpl)
AnsweredI have the following code for PSI classes from the bundled plugin cucumber-java: ``` @Overridepublic void registerReferenceProviders(@NotNull PsiReferenceRegistrar registrar) { registrar.registe...