主页
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年02月03日 19:10
> I'm basically looking into the source code but that is not very helpful. It takes a lot of time - months - to get it kind of working. Be prepared.
社区
IntelliJ IDEA Open API and Plugin Development
How to get all variables within a PsiClass (global and local variables)
0 票
已编辑于
2016年02月09日 11:05
Hello Preetam, When you invoke renaming action, this action calls specific method which collects elements to rename. There are a few renaming actions and methods which init and perform rename. When...
社区
IntelliJ IDEA Open API and Plugin Development
Dynamic check of psi tree
0 票
创建于
2016年02月09日 11:22
I do not know from where lexer / parser is called. Can try to find this but it would take time. Are you looking to trigger relexing / reparsing or call your method when this happens? Is this Java c...
社区
IntelliJ IDEA Open API and Plugin Development
Dynamic check of psi tree
0 票
创建于
2016年02月09日 18:10
this should be easy enough. take a look at this: http://www.jetbrains.org/intellij/sdk/docs/tutorials/custom_language_support/syntax_highlighter_and_color_settings_page.html where it uses Simple...
社区
IntelliJ IDEA Open API and Plugin Development
Dynamic check of psi tree
0 票
已编辑于
2016年01月19日 10:59
Hello Felix, > all my extension points seem to be ignored. > only one language-key can be existing in the "extension-point-pipeline" It appears so. > I want to keep this plugin as its own project...
社区
IntelliJ IDEA Open API and Plugin Development
Extending an existing custom language plugin
0 票
创建于
2016年01月20日 06:57
here is a file where you could start searching: https://github.com/JetBrains/intellij-community/blob/master/xml/xml-psi-api/src/com/intellij/psi/xml/XmlFile.java
社区
IntelliJ IDEA Open API and Plugin Development
How to intercept and process code nodes (syntax and highlight)
0 票
创建于
2016年01月20日 10:20
not sure if there is possibility to easily (automatically) mix different languages. you may try to define your own language type, BNF syntax etc. This is not simple.
社区
IntelliJ IDEA Open API and Plugin Development
How to intercept and process code nodes (syntax and highlight)
0 票
创建于
2016年01月20日 10:38
here is very extensive example of working BNF: https://github.com/ignatov/intellij-erlang/blob/master/grammars/erlang.bnf It works very well. This is not my plugin.
社区
IntelliJ IDEA Open API and Plugin Development
How to intercept and process code nodes (syntax and highlight)
0 票
创建于
2016年06月05日 13:07
> parser and lexer already works. well done! I thought this was the stumbling block. > And I wonna to write tests for it. Is there way to just pass Text of my lang and it lexer to Parser and comp...
社区
IntelliJ IDEA Open API and Plugin Development
Custom language support with handbuilt lexer and parser
0 票
创建于
2016年06月05日 11:39
Hello Ivan, are you trying to implement own lexer and parser from 0?
社区
IntelliJ IDEA Open API and Plugin Development
Custom language support with handbuilt lexer and parser
0 票
«
第一页
‹
上一页
下一页
›
最后
»