主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Ajit Hegde
Java developer.
活动总数
24
最后的活动
2022年05月09日 11:22
成员加入日期
2021年05月06日 14:39
关注
0 名用户
关注者数
0 名用户
投票数
5
订阅数
7
活动概览
帖子(4)
评论(8)
按最近的活动排序
最近的活动
投票数
创建于
2022年05月09日 11:22
Thank you for the info Yann. It works.
社区
IntelliJ IDEA Open API and Plugin Development
Not able to update intellij plugin to support latest version of intellij
0 票
创建于
2022年05月05日 05:53
Below is my build.gradle file and I don't have gradle.properties file plugins { id 'java' id 'org.jetbrains.intellij' version '1.5.3'}group 'org.aj'version '3.3.6-SNAPSHOT'sourceSets.main.jav...
社区
IntelliJ IDEA Open API and Plugin Development
Not able to update intellij plugin to support latest version of intellij
0 票
创建于
2021年11月10日 10:25
Hello Julien, It is possible that the code completion suggestion is disabled in your IntelliJ( manually or when using power-saving mode). So you can check manual code completion by pressing CTRL + ...
社区
IntelliJ IDEA Open API and Plugin Development
Code Completion not working
0 票
创建于
2021年07月19日 03:17
I found the issue. It was a Lexer problem although I find it a little weird. Initially, my lexer was like this for matching identifiers After changing it to the below form, it started working(adde...
社区
IntelliJ IDEA Open API and Plugin Development
PairedBraceMatcher is not working for Bracket followed by an identifier
0 票
创建于
2021年07月17日 09:00
Yes, It is tokenizing it as single token(Identifier) Only in the case of Brackets ("[]"). Braces and Parenthesis work absolutely fine.
社区
IntelliJ IDEA Open API and Plugin Development
PairedBraceMatcher is not working for Bracket followed by an identifier
0 票
创建于
2021年07月03日 06:32
Hi Thomas, Thank you for sharing this simple yet useful implementation for handling enter key indentation. 😊
社区
IntelliJ IDEA Open API and Plugin Development
Indentation after pressing enter
0 票
创建于
2021年05月10日 15:02
I have defined keywords in uppercase and the same is passed. new CDSTokenType("ARRAYOF"); I just updated my TokenType toString() method to not add TokenType before any keyword. It was like "TokenT...
社区
IntelliJ IDEA Open API and Plugin Development
Custom PSI error message when hovered on error
0 票
创建于
2021年05月06日 14:39
Hi Minipopov, PSI elements are the base for IntelliJ to parse your code. The parser will tokenize your code using Grammer file and then Lexer will use Lex/Flex file to map the actual token to gra...
社区
IntelliJ IDEA Plugin Users
Grammarkit/psi Implement custom language
0 票