主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Imants Cekusins
活动总数
410
最后的活动
2024年06月25日 06:27
成员加入日期
2015年07月30日 11:35
关注
0 名用户
关注者数
0 名用户
投票数
15
订阅数
108
活动概览
帖子(12)
评论(275)
按最近的活动排序
最近的活动
投票数
创建于
2016年03月02日 08:27
I did not notice there was PSI viewer in the first video. :-P Lexer definition possibly expects a crlf. Beginning of file and crlf are not the same thing. how did you define lexer? with grammar kit?
社区
IntelliJ IDEA Open API and Plugin Development
Highlighter does not work for the first token
0 票
创建于
2016年03月02日 11:04
I'd make these changes: CRLF = [\n\r]+ WHITE_SPACE = [\s\t\f] what is the purpose of these:LINE = [^\r\n]+FULL_LINE = [^\ \t\f\r\n]+ [^\r\n]*EMPTY = [^] ? are they necessary?
社区
IntelliJ IDEA Open API and Plugin Development
Highlighter does not work for the first token
0 票
创建于
2016年03月02日 11:25
does it make any difference after you remove EMPTY?
社区
IntelliJ IDEA Open API and Plugin Development
Highlighter does not work for the first token
0 票
创建于
2016年03月05日 19:40
so is element passed to processElementUsages - correct?
社区
IntelliJ IDEA Open API and Plugin Development
Pass in the "right" element to Find Usage Handler
0 票
创建于
2016年03月05日 20:54
do the elements returned by multiResolve implement getNameIdentifier getReference getReferences getPresentation ?
社区
IntelliJ IDEA Open API and Plugin Development
multiResolve() doesn't allow the user to choose a navigation target
0 票
创建于
2016年03月05日 21:25
well this surely wasn't related to any of my problems.
社区
IntelliJ IDEA Open API and Plugin Development
Pass in the "right" element to Find Usage Handler
0 票
创建于
2016年01月21日 19:09
> I've tried to implement the lang.findUsagesProvider with language="JavaScript" but it seems that IntelliJ doesn't care about it. did you try to put a breakpoint to the constructor? is it ever hit?
社区
IntelliJ IDEA Open API and Plugin Development
How to add "rename" functionality for strings in Javascript
0 票
已编辑于
2016年01月21日 19:48
in your FindUsagesProvider, does @Override public boolean canFindUsagesFor(@NotNull PsiElement element) return true for the String identifier? you may also need to implement your own WordsScan...
社区
IntelliJ IDEA Open API and Plugin Development
How to add "rename" functionality for strings in Javascript
0 票
创建于
2016年01月23日 18:42
> I got it to work Well done. That's what matters.
社区
IntelliJ IDEA Open API and Plugin Development
How to add "rename" functionality for strings in Javascript
0 票
创建于
2016年02月03日 18:43
implement these extension points: referencesSearch lang.findUsagesProvider findUsagesHandlerFactory
社区
IntelliJ IDEA Open API and Plugin Development
How to get all variables within a PsiClass (global and local variables)
0 票
«
第一页
‹
上一页
下一页
›
最后
»