主页
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日 21:23
> two links refering to the same file will not get wordhighlighted when the caret is on one of them if the link has a space but will highlight if the link has no spaces. They will highlight if the ...
社区
IntelliJ IDEA Open API and Plugin Development
How to allow Rename Refactoring to handle spaces in referencing Elements?
0 票
创建于
2015年09月16日 22:18
did you try putting a letter between these odd characters?e.g. [[NOTICE@]] --> NOTICE@.md refactor to NOTIC@E$.mdalso e.g. [[NOTICE@]] --> NOTICE@.md refactor to NO$TIC@E.md?
社区
IntelliJ IDEA Open API and Plugin Development
How to allow Rename Refactoring to handle spaces in referencing Elements?
0 票
创建于
2015年09月16日 22:35
.. and if after renaming, save and sync files,close and reopen the project,do the links get restored (point to files, work as expected) by any chance?
社区
IntelliJ IDEA Open API and Plugin Development
How to allow Rename Refactoring to handle spaces in referencing Elements?
0 票
创建于
2015年09月17日 12:45
just thought of something else:the problem may be with DefaultWordsScanner.what you could try:in your implementation of FindUsagesProvider:there is likely this line: @Overridepublic void processWor...
社区
IntelliJ IDEA Open API and Plugin Development
How to allow Rename Refactoring to handle spaces in referencing Elements?
0 票
创建于
2015年09月18日 08:34
Hello Elliotte,it is possible to debug without Intellij sources attached: you can still step in to actual (decompiled) Intellij code. You can set breakpoints, catch exceptions in decompiled code, t...
社区
IntelliJ IDEA Open API and Plugin Development
Debuggin with IntelliJ source code
0 票
创建于
2015年09月16日 11:52
here is how to catch package renamed event:1) implement EP refactoring.elementListenerProvider2) implement RefactoringElementListener:public void elementRenamed(@NotNull PsiElement psi) { if (!(ps...
社区
IntelliJ IDEA Open API and Plugin Development
Rename processor
0 票
创建于
2015年09月16日 13:00
IElementType LINE = new XElementType("LINE"); ICompositeElementType LINE = new XElementType("LINE");
社区
IntelliJ IDEA Open API and Plugin Development
PsiParser - complex element
0 票
创建于
2015年09月16日 14:20
Maxim, my apologies.It turns out that PsiBuilder produces a correct (as expected) ASTNode.However by the time the tree is displayed in PsiViewer, it appears differently from PsiBuilder output.The p...
社区
IntelliJ IDEA Open API and Plugin Development
PsiParser - complex element
0 票
创建于
2015年09月16日 14:34
> It is ok to reuse generated code until you decide to generate it again :)well autogen code was tweaked to test parser.I will implement ICompositeElementType. Actually, will write custom factory f...
社区
IntelliJ IDEA Open API and Plugin Development
PsiParser - complex element
0 票
创建于
2015年09月16日 14:39
> PsiViewer shows PSI, not ast nodesa. However GrammarKit somehow succeeds to keep Psi tree very similar to AST tree. At least, every leaf (e.g. KEY) from bnf structure appears in PsiViewer.LINE ...
社区
IntelliJ IDEA Open API and Plugin Development
PsiParser - complex element
0 票
«
第一页
‹
上一页
下一页
›
最后
»