Eugene Berman
- Total activity 24
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
-
Created JSON plugin dependency cannot be resolved?
AnsweredI just uploaded a new version of the plugin and the verification failed: IntelliJ IDEA Ultimate 2024.3 eap (243.15521.24)1 missing mandatory dependency. 1 possible compatibility problem, some of wh... -
Created allowSlowOperations deprecated?
AnsweredHere's another one I stumbled upon. My plugin has to search for all files with certain extension within a project, e.g.Collection<VirtualFile> libs = FilenameIndex.getAllFilesByExt(project, "libson... -
Created PsiAwareTextEditorProvider.createEditor is never invoked in 2023.2.5?
AnsweredMy plugin has a custom editor implementation and in my editor provider class it overrides the createEditor method. However, after upgrading to 2023.2.5 it is never invoked, and when I run the plugi... -
Created How to display inline values in the editor?
AnsweredI'm implementing a custom debugger for a custom language and during the debug session I would like to display inline values in the editor, in a same way java debugger displays values in grey italic... -
Created How can I keep the watches tree expanded?
AnsweredKinda hard to explain and I'm not sure if I use the right terminology here. I'm implementing a debugger for custom language and display certain values in the watches window. The problem is that the... -
Created Custom internal Runner example?
I have a custom language plugin and I would like to add an ability to run and debug the code written in this language - however, there's no command line or external tool for this, at the end of the...