From 3530de089dc91e0766a6114d37f0378c1b4b0e34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 29 Oct 2024 12:00:24 +0100 Subject: [PATCH] inlay_hints.md: mention `InlayHintsCustomSettingsProvider` --- topics/reference_guide/custom_language_support/inlay_hints.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/topics/reference_guide/custom_language_support/inlay_hints.md b/topics/reference_guide/custom_language_support/inlay_hints.md index f4ed03202..44c5900aa 100644 --- a/topics/reference_guide/custom_language_support/inlay_hints.md +++ b/topics/reference_guide/custom_language_support/inlay_hints.md @@ -67,6 +67,10 @@ See the API documentation for the details. - [`JavaImplicitTypeDeclarativeInlayHintsProvider`](%gh-ic%/java/java-impl/src/com/intellij/codeInsight/hints/JavaImplicitTypeDeclarativeInlayHintsProvider.kt) - shows inferred type for variables declared with the `var` keyword in Java code when the inferred type may not be clear - [`JavaMethodChainsDeclarativeInlayProvider`](%gh-ic%/java/java-impl/src/com/intellij/codeInsight/hints/JavaMethodChainsDeclarativeInlayProvider.kt) - shows method return types in call chains in Java code +To provide a custom configuration UI, implement +`[`InlayHintsCustomSettingsProvider`](%gh-ic%/platform/lang-api/src/com/intellij/codeInsight/hints/declarative/InlayHintsCustomSettingsProvider.kt)` +registered in `com.intellij.codeInsight.declarativeInlayProviderCustomSettingsProvider` extension point. + ### Code Vision Provider