Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Ajit Hegde
Java developer.
Total activity
24
Last activity
May 09, 2022 11:22
Member since
May 06, 2021 14:39
Following
0 users
Followed by
0 users
Votes
5
Subscriptions
7
Activity overview
Posts (4)
Comments (8)
Sort by votes
Recent activity
Votes
Created
May 09, 2022 11:22
Thank you for the info Yann. It works.
Community
IntelliJ IDEA Open API and Plugin Development
Not able to update intellij plugin to support latest version of intellij
0 votes
Created
May 05, 2022 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...
Community
IntelliJ IDEA Open API and Plugin Development
Not able to update intellij plugin to support latest version of intellij
0 votes
Created
November 10, 2021 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 + ...
Community
IntelliJ IDEA Open API and Plugin Development
Code Completion not working
0 votes
Created
July 19, 2021 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...
Community
IntelliJ IDEA Open API and Plugin Development
PairedBraceMatcher is not working for Bracket followed by an identifier
0 votes
Created
July 17, 2021 09:00
Yes, It is tokenizing it as single token(Identifier) Only in the case of Brackets ("[]"). Braces and Parenthesis work absolutely fine.
Community
IntelliJ IDEA Open API and Plugin Development
PairedBraceMatcher is not working for Bracket followed by an identifier
0 votes
Created
July 03, 2021 06:32
Hi Thomas, Thank you for sharing this simple yet useful implementation for handling enter key indentation. 😊
Community
IntelliJ IDEA Open API and Plugin Development
Indentation after pressing enter
0 votes
Created
May 10, 2021 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...
Community
IntelliJ IDEA Open API and Plugin Development
Custom PSI error message when hovered on error
0 votes
Created
May 06, 2021 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...
Community
IntelliJ IDEA Plugin Users
Grammarkit/psi Implement custom language
0 votes