Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Gregory Shrago
Total activity
512
Last activity
August 14, 2023 18:03
Member since
January 16, 2007 18:03
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
214
Activity overview
Posts (3)
Comments (295)
Sort by recent activity
Recent activity
Votes
Created
June 18, 2012 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...
Community
IntelliJ IDEA Open API and Plugin Development
[ANN] Grammar-Kit: generate parser from grammar
0 votes
Created
June 21, 2012 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...
Community
IntelliJ IDEA Open API and Plugin Development
[ANN] Grammar-Kit: generate parser from grammar
0 votes
Created
July 23, 2012 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;...
Community
IntelliJ IDEA Open API and Plugin Development
plugin development : modify javascript syntax highlighting rules
0 votes
Created
January 31, 2013 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...
Community
IntelliJ IDEA Open API and Plugin Development
Syntax Highlighting gets stuck
0 votes
Created
January 11, 2013 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...
Community
IntelliJ IDEA Open API and Plugin Development
About ColumnInfo
0 votes
Created
March 05, 2013 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...
Community
IntelliJ IDEA Open API and Plugin Development
Starting point for a Java-like grammar for Grammar-Kit?
0 votes
Created
March 07, 2013 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.
Community
IntelliJ IDEA Open API and Plugin Development
Starting point for a Java-like grammar for Grammar-Kit?
0 votes
Created
June 03, 2013 17:55
In order to simplify this apublic DataSource.getConnection(Project)method is added to IDEA 13 and IDEA 12.1.X codebases.
Community
IntelliJ IDEA Open API and Plugin Development
Can I access and use the IDEA Data Sources?
0 votes
Created
December 18, 2012 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...
Community
IntelliJ IDEA Open API and Plugin Development
Extend SQL dialect?
0 votes
Created
September 27, 2013 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...
Community
IntelliJ IDEA Open API and Plugin Development
Suggestions for tracking down a null pointer exception?
0 votes
«
First
‹
Previous
Next
›
Last
»