主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Gregory Shrago
活动总数
512
最后的活动
2023年08月14日 18:03
成员加入日期
2007年01月16日 18:03
关注
0 名用户
关注者数
1 名用户
投票数
0
订阅数
214
活动概览
帖子(3)
评论(295)
按最近的活动排序
最近的活动
投票数
创建于
2012年06月18日 17:08
The latest binaries on the github have the following:1. "tokens" list attribute. To avoid rules that simply define tokens do the following (recommended) :{ // old way, still supported but may b...
社区
IntelliJ IDEA Open API and Plugin Development
[ANN] Grammar-Kit: generate parser from grammar
0 票
创建于
2012年06月21日 14:58
Consider the following case:repetition ::= ( element ) *recoverUntil should always be used on the "element" and not on the "repetition" itself.So in your case:module_body ::= (module | data_definit...
社区
IntelliJ IDEA Open API and Plugin Development
[ANN] Grammar-Kit: generate parser from grammar
0 票
创建于
2012年07月23日 16:58
You can try IntelliLang language injection approach.I've just pushed a small fix to to IDEA 12 that makes this possible:otherwise you can write your own LanguageInjector.Something like:package foo;...
社区
IntelliJ IDEA Open API and Plugin Development
plugin development : modify javascript syntax highlighting rules
0 票
创建于
2013年01月31日 10:16
I use separate rules for valid and unclosed strings and other constructs. Something like that:STRING_SINGLELINE=\' (\'\'|[^\'\r\n]) * \'STRING_SINGLELINE_BAD=\' (\'\'|[^\'\r\n]) * Seems to make eve...
社区
IntelliJ IDEA Open API and Plugin Development
Syntax Highlighting gets stuck
0 票
创建于
2013年01月11日 19:40
If ColumnInfo<Item, Aspect> is defined then:1. valueOf() should always be of type Aspect and the result of valueOf() goes to TableCellRenderer.getTableCellRendererComponent call as value2. If yo...
社区
IntelliJ IDEA Open API and Plugin Development
About ColumnInfo
0 票
创建于
2013年03月05日 15:02
Grammar-Kit supports left recursion in one special case: Pratt-like expression parsing.Here's an example: https://github.com/JetBrains/Grammar-Kit/blob/master/testData/generator/ExprParser.bnfAnoth...
社区
IntelliJ IDEA Open API and Plugin Development
Starting point for a Java-like grammar for Grammar-Kit?
0 票
创建于
2013年03月07日 23:21
I'm interested in fixing any problems with Live Preview so you can send me anything to reproduce the problem (email or github). It will be fixed.
社区
IntelliJ IDEA Open API and Plugin Development
Starting point for a Java-like grammar for Grammar-Kit?
0 票
创建于
2013年06月03日 17:55
In order to simplify this apublic DataSource.getConnection(Project)method is added to IDEA 13 and IDEA 12.1.X codebases.
社区
IntelliJ IDEA Open API and Plugin Development
Can I access and use the IDEA Data Sources?
0 票
创建于
2012年12月18日 14:40
Any SQL dialect uses generated + handwritten lexers approach.So you can hack OracleLexer or even SqlLexer class instead. ;-)I've added "." as allowed character so your case will be covered.Expect t...
社区
IntelliJ IDEA Open API and Plugin Development
Extend SQL dialect?
0 票
创建于
2013年09月27日 17:56
Dear Terence,We do care in fact. Unfortunately sometimes it is hard to help without the ability to really reproduce the problem.The AbstratTreeUi you mentioned is a very complicated piece of code w...
社区
IntelliJ IDEA Open API and Plugin Development
Suggestions for tracking down a null pointer exception?
0 票
«
第一页
‹
上一页
下一页
›
最后
»