Home
IDEs Support (IntelliJ Platform) | JetBrains
Submit a request
Community
Sign in
Dmitry Jemerov
Follow
New articles and posts
New articles, posts, and comments
Total activity
10388
Last activity
March 08, 2022 16:04
Member since
October 02, 2006 20:59
Following
0 users
Followed by
3 users
Votes
0
Subscriptions
4279
Activity overview
Articles (0)
Posts (30)
Comments (6079)
Sort by recent activity
Recent activity
Votes
Created
March 08, 2022 16:04
Tinylog should work, yes.
Community
IntelliJ IDEA Open API and Plugin Development
How to use logback-classic inside plugin? Conflicts with clion jar containing log4j binding
0 votes
Created
March 08, 2022 15:39
If you need to display logs coming from your code in your UI, the best solution is to implement an entirely separate mini-logging framework, not depending on SLF4J or anything else, and use that to...
Community
IntelliJ IDEA Open API and Plugin Development
How to use logback-classic inside plugin? Conflicts with clion jar containing log4j binding
0 votes
Created
March 08, 2022 15:15
Why don't you simply use slf4j in your plugin, without specifying any implementation? This will use the implementation provided by CLion, which is log4j in CLion 2021.3 and java.util.logging in CLi...
Community
IntelliJ IDEA Open API and Plugin Development
How to use logback-classic inside plugin? Conflicts with clion jar containing log4j binding
0 votes
Created
January 25, 2022 10:52
The replacement for the deprecated APIs is documented in the javadoc comments: `Application.getService()` and `Project.getService()`. For the null pointer exception, we'd need to see the complete s...
Community
IntelliJ IDEA Open API and Plugin Development
Persisting State of Components
0 votes
Created
July 21, 2021 09:27
You can use https://github.com/ballerina-platform/lsp4intellij to adapt your LSP server to an IntelliJ plugin with minimum extra effort.
Community
IntelliJ IDEA Open API and Plugin Development
IntelliJ support for Language Server Protocol (as a client)?
-9 votes
Created
May 28, 2021 14:26
You can simply cast to `FileDocumentManagerImpl`, the `contentsChanged` method is still there.
Community
IntelliJ IDEA Open API and Plugin Development
How to refresh / invalidate the cache of decompiled files ?
1 vote
Created
March 30, 2021 09:13
Those links point to a version of ASM from many years ago. The current sources of the ASM dependency can be found under https://github.com/jetbrains/intellij-deps-asm
Community
IntelliJ IDEA Open API and Plugin Development
Any way to see the sources for org.jetbrains.asm4?
0 votes
Created
March 11, 2021 15:06
Both existing plugins for LSP support are open-source, so if the original developer stops development or support, it's fully possible for plugin developers who use that code to continue development...
Community
IntelliJ IDEA Open API and Plugin Development
IntelliJ support for Language Server Protocol (as a client)?
-9 votes
Created
November 05, 2020 17:03
Note that in recent IntelliJ IDEA versions the "Export to Text File" button has been removed from the toolbar. The feature can be accessed through the context menu in the usages tree.
Community
IntelliJ IDEA Users
Is there a way to copy search results as text?
1 vote
Created
August 25, 2020 09:03
It's been replaced with the inspection widget in the top right corner of the editor.
Community
PyCharm
How to disable inspections for specific file
0 votes
1
2
3
4
5
6
›
»