Skip to content

Commit 99927e6

Browse files
darthorimarintellij-monorepo-bot
authored andcommitted
[lsp] print separating space between implicit inlay hints
LSP-205 GitOrigin-RevId: 71f2ce12638ff159ba3293c981cd3c296d867ca7
1 parent 5aba8bb commit 99927e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features-impl/kotlin/src/com/jetbrains/ls/api/features/impl/common/kotlin/inlayHints/LSInlayHintsKotlinImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ internal object LSInlayHintsKotlinImpl : LSInlayHintsCommonImpl(
2727
override fun createProviders(): List<Provider> {
2828
return listOf(
2929
Provider(KtReferencesTypeHintsProvider(), KotlinHintFactory(kind = InlayHintKind.Type)),
30-
Provider(KtLambdasHintsProvider(), KotlinHintFactory(kind = InlayHintKind.Type)),
30+
Provider(KtLambdasHintsProvider(printSeparatingSpace = true), KotlinHintFactory(kind = InlayHintKind.Type)),
3131
Provider(KtParameterHintsProvider(), KotlinHintFactory(paddingRight = true, kind = InlayHintKind.Parameter)),
3232
Provider(KtDefaultParameterInlayHintsProvider(), KotlinHintFactory(paddingRight = true, kind = InlayHintKind.Parameter)),
3333
Provider(KtCallChainHintsProvider(), KotlinHintFactory()),

0 commit comments

Comments
 (0)