Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Aaron Burk
Total activity
8
Last activity
June 11, 2024 20:31
Member since
June 03, 2024 14:52
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
2
Activity overview
Posts (1)
Comments (5)
Sort by recent activity
Recent activity
Votes
Created
June 11, 2024 20:31
Fair enough … if I did want to declare it as an inlay setting that I could toggle back on if I wanted, what is the standard way of doing that with a declarative inlay?
Community
IntelliJ IDEA Open API and Plugin Development
How do I add extension codeInsight.declarativeInlayProvider
0 votes
Created
June 11, 2024 20:28
I discovered this worked for me since I was using declaritvie Inlay HintsDeclarativeInlayHintsPassFactory.scheduleRecompute(textEditor.getEditor(), project)
Community
IntelliJ IDEA Open API and Plugin Development
Restarting inlay hints provider
0 votes
Created
June 05, 2024 18:05
Followup question … although my hints show up now … I can right click them and disable them and then they're gone and I cannot reenable them without either wiring up a whole bunch of inlay settings...
Community
IntelliJ IDEA Open API and Plugin Development
How do I add extension codeInsight.declarativeInlayProvider
0 votes
Created
June 04, 2024 15:18
Actually … I just figured it out. My solution is language agnostic because the lsp handles all of the language specific stuff for me, so I needed to add a InlayHintFactory like so …package com.exam...
Community
IntelliJ IDEA Open API and Plugin Development
How do I add extension codeInsight.declarativeInlayProvider
0 votes
Edited
June 04, 2024 12:33
I am using a lsp … in my example code I'm hardcoding the return from the lsp but the lsp return should have the line number I need for placement of the inlay hint. I don't think I have to use PSI d...
Community
IntelliJ IDEA Open API and Plugin Development
How do I add extension codeInsight.declarativeInlayProvider
0 votes