Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Insyncwithfoo
Total activity
11
Last activity
April 07, 2024 23:02
Member since
February 17, 2024 14:12
Following
0 users
Followed by
0 users
Votes
1
Subscriptions
2
Activity overview
Posts (2)
Comments (6)
Sort by recent activity
Recent activity
Votes
Created
April 07, 2024 23:02
Found it:LspServerManager.getInstance(project).getServersForProvider(SupportProvider::class.java).forEach { it.sendNotification { lsp4jServer -> lsp4jServer.workspaceService.didChangeConf...
Community
IntelliJ IDEA Open API and Plugin Development
Replacement for LspServer.lsp4jServer
0 votes
Created
February 22, 2024 06:39
Thanks a lot! That seems to work. Again, your answers are very much appreciated!
Community
IntelliJ IDEA Open API and Plugin Development
Can't call saveDocumentAsIs() from doAnnotate()
0 votes
Created
February 21, 2024 12:25
It's for your plugin to decide.I'm currently extending the externalAnnotator extension point:<externalAnnotator language="Foobar" implementationClass="fully.qualified.name.CustomAnnotator"/>I think...
Community
IntelliJ IDEA Open API and Plugin Development
Can't call saveDocumentAsIs() from doAnnotate()
0 votes
Edited
February 21, 2024 00:36
To workaround, you can call “save” before the highlighting starts […]From which method of ExternalAnnotator can I do that? collectInformation(), doAnnotate() and apply() are all called from within ...
Community
IntelliJ IDEA Open API and Plugin Development
Can't call saveDocumentAsIs() from doAnnotate()
0 votes
Edited
February 20, 2024 23:51
Because I can't run that (static analysis) tool on an unsaved file (of code). That would create discrepancies between the results and the content visible to the user, which might cause an IndexOutO...
Community
IntelliJ IDEA Open API and Plugin Development
Can't call saveDocumentAsIs() from doAnnotate()
0 votes
Edited
February 19, 2024 16:35
The CLI tool I need to use doesn't support passing content via stdio. I contacted the maintainers and they refused to add such a feature, saying I should be using the corresponding LSP tool instead...
Community
IntelliJ IDEA Open API and Plugin Development
Can't call saveDocumentAsIs() from doAnnotate()
0 votes