主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Imants Cekusins
活动总数
410
最后的活动
2024年06月25日 06:27
成员加入日期
2015年07月30日 11:35
关注
0 名用户
关注者数
0 名用户
投票数
15
订阅数
108
活动概览
帖子(12)
评论(275)
按最近的活动排序
最近的活动
投票数
创建于
2015年09月16日 16:06
found the source of my woes.I omitted these two lines: ... final PsiBuilder.Marker rootMarker = builder.mark(); ... rootMarker.done(root); ...from this example:https://upsource.jetbra...
社区
IntelliJ IDEA Open API and Plugin Development
PsiParser - complex element
0 票
创建于
2015年09月14日 10:10
Hello Lars,multiple RenameHandler's can be defined. Custom handlers are iterated until in one of them public final boolean isAvailableOnDataContext(final DataContext dataContext) returns true. If n...
社区
IntelliJ IDEA Open API and Plugin Development
Prevent rename refactoring
0 票
创建于
2015年09月15日 10:27
you are welcome.I had written that reply before I saw Dmitry's message.ah well, 2 answers are better than no answer ;) Someone else might need to tweak rename. That reply could give them some ideas.
社区
IntelliJ IDEA Open API and Plugin Development
Prevent rename refactoring
0 票
创建于
2015年10月08日 19:52
heyain your file definition (which extends PsiFileBase) add this method:@Overridepublic Icon getIcon(int flags) {if(pathOk()) // you need to add this custom method. return super.getIcon(flag...
社区
IntelliJ IDEA Open API and Plugin Development
Annotate files based on filenames
0 票
创建于
2015年09月21日 13:29
does 2.2 cover this:http://www.jetbrains.org/intellij/sdk/docs/tutorials/custom_language_support/language_and_filetype.html?
社区
IntelliJ IDEA Open API and Plugin Development
How to access image resources bundle with IntelliJ IDE
0 票
创建于
2015年09月24日 23:44
Hi Saleeh,You could define both languages in one bnf file.just make sure the lexer can figure out, which elements belong to which language, and return the appropriate element type.If bnf is defined...
社区
IntelliJ IDEA Open API and Plugin Development
Extending syntax checking
0 票
创建于
2015年09月24日 23:49
Irina,Saleeh needs to mix languages in one file type. This is common in some frameworks e.g. MVC: Html and C#.Net. Or Html and JavaScriptThis mixed code -if valid- should not throw errors.
社区
IntelliJ IDEA Open API and Plugin Development
Extending syntax checking
0 票
创建于
2015年09月25日 13:46
it is probably possible.these files may be relevant:JavaLexer:https://github.com/JetBrains/intellij-community/blob/a5cd6ac6102731ea9b557dcc1c684340f7d8432a/java/java-psi-impl/src/com/intellij/lang/...
社区
IntelliJ IDEA Open API and Plugin Development
Extending syntax checking
0 票
创建于
2015年10月30日 16:12
try this:disable as many plugins as possible - leave only the most essentialdisable other plugins which work on the same file extensioninvalidate caches & restart ideaopen plugin projectrebuild pl...
社区
IntelliJ IDEA Open API and Plugin Development
Trouble deploying plugin - works in sandbox but not when I manually build/install
0 票
创建于
2015年10月30日 16:44
maybe try this:uninstall your pluginopen plugin projectset breakpoint on any exception (maybe set class filter if you can narrow it down to any classes)run the plugin in debug mode
社区
IntelliJ IDEA Open API and Plugin Development
Trouble deploying plugin - works in sandbox but not when I manually build/install
0 票
«
第一页
‹
上一页
下一页
›
最后
»