主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Yann Cebron
活动总数
8231
最后的活动
2025年04月23日 09:06
成员加入日期
2003年04月16日 11:50
关注
0 名用户
关注者数
2 名用户
投票数
21
订阅数
3314
活动概览
帖子(120)
评论(4776)
按最近的活动排序
最近的活动
投票数
创建于
2013年01月10日 14:57
It should be possible, but I'm not sure how you would want to determine the number of changed lines.Can you give some insights on how?
社区
IntelliJ IDEA Open API and Plugin Development
Gather statistics
0 票
创建于
2013年02月06日 15:33
Please also note upcoming changes in 12.1 w/r to color schemes and custom languageshttp://confluence.jetbrains.com/pages/viewpage.action?pageId=49463468
社区
IntelliJ IDEA Open API and Plugin Development
Properly Embracing Darcula In Custom Languages
0 票
创建于
2013年04月09日 06:28
AFAIK you'll have to provide typed getters for each DomElement variant which could be nested. Ofcourse, common functionality can be extracted into super-class.There's so such "automatic" language i...
社区
IntelliJ IDEA Open API and Plugin Development
Language Injection and base DomElements with DOM Api
0 票
创建于
2013年04月18日 14:38
You might wanna consider using DOM model for your XML files, especially for cross-references in XML/XML->Java it's easier than building ReferenceContributors for every single element.http://conflue...
社区
IntelliJ IDEA Open API and Plugin Development
Problems understanding LineMarkerProvider and ReferenceContributor
0 票
创建于
2013年05月31日 07:35
Those are classes used internally by your plugin's resolve/completion mechanisms, you do not need to register them in your plugin.xml.They "only" provide the layer for calculating the model/related...
社区
IntelliJ IDEA Open API and Plugin Development
Resolve Scope DOM across multiple files
0 票
创建于
2013年06月04日 07:14
Great, looking forward to see your plugin in public soon ;-)BasicDomElementsInspection uses com.intellij.util.xml.highlighting.DomHighlightingHelperImpl#checkNameIdentity to determine unique @Name ...
社区
IntelliJ IDEA Open API and Plugin Development
Resolve Scope DOM across multiple files
0 票
创建于
2013年05月29日 10:07
Hello Andreas,exactly, you'll need to add $IDEA_HOM$/plugins/jsp/lib/jsp-impl.jar to your IntelliJ SDK. The Plugin ID for <dependency> is com.intellij.jsp
社区
IntelliJ IDEA Open API and Plugin Development
Cannot use com.intellij.psi.jsp.el.ELLiteralExpression in ReferenceContributor
0 票
创建于
2013年05月29日 11:57
Oops, actually there's a much easier way to solve this - simply extend com.intellij.psi.jsp.el.ElLiteralCustomReferenceProvider (you can filter out non-relevant places in #accept()).
社区
IntelliJ IDEA Open API and Plugin Development
Cannot use com.intellij.psi.jsp.el.ELLiteralExpression in ReferenceContributor
0 票
创建于
2013年06月03日 08:59
My guess is the TextRange of the PropertyReference you're creating doesn't match the actual TextRange of the actual text (=key value) in ELLiteralExpression.Try passing TextRange.from(1, val.length())
社区
IntelliJ IDEA Open API and Plugin Development
Cannot use com.intellij.psi.jsp.el.ELLiteralExpression in ReferenceContributor
0 票
创建于
2013年06月03日 10:00
Try returning only one reference (break after first match) to see if it works then. If not, could you share your whole plugin's sources?
社区
IntelliJ IDEA Open API and Plugin Development
Cannot use com.intellij.psi.jsp.el.ELLiteralExpression in ReferenceContributor
0 票
«
第一页
‹
上一页
下一页
›
最后
»