Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Imants Cekusins
Total activity
410
Last activity
June 25, 2024 06:27
Member since
July 30, 2015 11:35
Following
0 users
Followed by
0 users
Votes
15
Subscriptions
108
Activity overview
Posts (12)
Comments (275)
Sort by recent activity
Recent activity
Votes
Created
February 03, 2016 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.
Community
IntelliJ IDEA Open API and Plugin Development
How to get all variables within a PsiClass (global and local variables)
0 votes
Edited
February 09, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
Dynamic check of psi tree
0 votes
Created
February 09, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
Dynamic check of psi tree
0 votes
Created
February 09, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
Dynamic check of psi tree
0 votes
Edited
January 19, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
Extending an existing custom language plugin
0 votes
Created
January 20, 2016 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
Community
IntelliJ IDEA Open API and Plugin Development
How to intercept and process code nodes (syntax and highlight)
0 votes
Created
January 20, 2016 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.
Community
IntelliJ IDEA Open API and Plugin Development
How to intercept and process code nodes (syntax and highlight)
0 votes
Created
January 20, 2016 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.
Community
IntelliJ IDEA Open API and Plugin Development
How to intercept and process code nodes (syntax and highlight)
0 votes
Created
June 05, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
Custom language support with handbuilt lexer and parser
0 votes
Created
June 05, 2016 11:39
Hello Ivan, are you trying to implement own lexer and parser from 0?
Community
IntelliJ IDEA Open API and Plugin Development
Custom language support with handbuilt lexer and parser
0 votes
«
First
‹
Previous
Next
›
Last
»