Vladimir Rudev

- Total activity 94
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 29
-
Vladimir Rudev created a post, Where PsiDocComment is attached to PsiDocCommentOwner for Java AST?
Hello, I found that Groovy AST and Java AST is different in place of javadoc(PsiDocComment) node position - for Groovy AST comment node is sibling withmethod(PsiDocCommentOwner).Its clearly describ... -
Vladimir Rudev created a post, Fixed-number(single) SubTag elements
Hello, I'm defining dom structure for my plugin, one of my interface looks like this:public interface PrimaryElement extends DomElement { @SubTag("bundle") Bundle getBundle();}I want restric... -
Vladimir Rudev created a post, How to write test for LineMarkerProvider#collectSlowLineMarkers
Hello, I need to write test for LineMarkerProvider implementation, I found one example - org.jetbrains.plugins.groovy.lang.GroovyLineMarkerTest,but it tests only markers that collected only by Line... -
Vladimir Rudev created a post, Storing link to facet in configuration
Hello, in my facet I want to hold link to another facet(web facet).Since one module can hold many facets with same name and type I need some unique ID offacet that I'm linking - but I didn't find a... -
Vladimir Rudev created a post, Rebuild PSI in directory
Hello, I'm developing custom language plugin that extends bundled Properties plugin(and language).Plugin replaces language for all files in certain directory. Also it replaces lexer and parser for ... -
Vladimir Rudev created a post, AssertionError:No ID found for serializer
Hello,In my plugin I'm getting this error right after opening project:No ID found for serializer NLS_INCLUDE_PROPERTY (ru.crazyproger.plugins.webtoper.nls.parser.NlsIncludePropertyStubElementType):... -
Vladimir Rudev created a post, Replace foreign report submitter
Hello, Is there any way to replace report submitter of foreign plugin(my plugin depends on it)?I extend bundled Properties plugin, but I found that sometimes errors that corresponds to my plugin(e.... -
Vladimir Rudev created a post, Extending Properties language
Hello,I'm making plugin for our internal framework. In our framework we use extended properties files - they have a hierarchy(child can have many parents). Of course child inherit all properties fr... -
Vladimir Rudev created a post, How to add action to global searchable actions list?
Hello,In my plugin I create action, but it doesn't appeared in global actions list(Ctrl+Shift+A).In com.intellij.ide.util.gotoByName.GotoActionModel#collectActions I see that collected only actions... -
Vladimir Rudev created a post,