Nikita Eshkeev
- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 5
-
Edited How do I access INJECTION of a PsiField's initializer, which is a PsiLanguageInjectionHost?
What I have done: I defined my own language "MyLanguage" I need to inject this language to both annotations' values and fields' initializers, so I defined a com.intellij.lang.injection.MultiHostIn... -
Edited Autocompletion hangs in custom MultiHostInjector
AnsweredI defined the following instance of MultiHostInjector to treat comments a java methods' bodies: public class MyCustomMultiHostInjector implements MultiHostInjector { @Override public void get... -
Created How do I enhance java parser to capture information from PsiComment and PsiDocComment?
AnsweredI would like to capture some valuable information from a comment block either PsiComment or PsiDocComment which, say, is enclosed into curly brackets, for example: /** * Documentation string 1 * { ... -
Edited How do I add a completion contributor for a composite element?
I need to add additional entries to the completion dialog for method references (e.g. Objects::toString). The article says that I need to use withParent or withSuperParent for composite elements, b... -
Edited How do I add java-psi-impl which contains JavaElementType to my plugin project?
AnsweredI started a new intellij platform plugin project with gradle as it described in the documentation. My gradle.build looks like this (I haven't touched it since its creation): plugins { id 'jav...