Home
IDEs Support (IntelliJ Platform) | JetBrains
Submit a request
Community
Sign in
Artsiom Chapialiou
Follow
New posts
New posts and comments
Total activity
236
Last activity
February 01, 2023 11:03
Member since
October 15, 2017 18:13
Following
0 users
Followed by
0 users
Votes
138
Subscriptions
42
Activity overview
Posts (15)
Comments (41)
Sort by votes
Recent activity
Votes
Created
April 27, 2018 16:44
Hi Lev. Semantic analysis (as well as additional highlighting and many other things) are usually done through Annotators and Inspections. I didn't check if it possible to apply them to the piece of...
Community
IntelliJ IDEA Open API and Plugin Development
How to integrate a Java language block/fragment into a custom language plugin
2 votes
Created
March 02, 2018 21:38
Not sure if it's fully related to that topic but I think that may be helpful for the people implementing Java injection into their plugin's PSI tree: Java language injection into JFlex
Community
IntelliJ IDEA Open API and Plugin Development
How to integrate a Java language block/fragment into a custom language plugin
2 votes
Created
June 12, 2018 19:06
That may help: [JavaDoc Clean Read]( https://plugins.jetbrains.com/plugin/10828-javadoc-clean-read ) plugin for IntelliJ platform IDEs.Let me know in issue tracker if any issue or needs in functio...
Community
IntelliJ IDEA Users
WYSIWYG Javadoc viewer/editor?
1 vote
Created
March 27, 2021 11:53
For the cases like mine: offset in the editor needed for use in DocumentationProvider#generateDoc the simplest workaround is overriding DocumentationProvider#getCustomDocumentationElement and use(r...
Community
IntelliJ IDEA Open API and Plugin Development
How to get cursor position in the current editor?
0 votes
Created
March 27, 2021 11:28
Since 201 the PsiEditorUtil.findEditor(psiElement); seems to be the easiest solution to obtain Editor (require EDT)
Community
IntelliJ IDEA Open API and Plugin Development
how to get the Editor from PsiElement?
0 votes
Created
March 27, 2021 11:28
Since 201 the PsiEditorUtil.findEditor(psiElement); seems to be the easiest solution to obtain Editor (require EDT)
Community
IntelliJ IDEA Open API and Plugin Development
How to get cursor position in the current editor?
0 votes
Edited
October 25, 2020 12:59
Recent update:Simplest but error prone way with usage of deprecated DataManager#getDataContext() is: int offset = CommonDataKeys.CARET.getData(DataManager.getInstance().getDataContext()).getOffset(...
Community
IntelliJ IDEA Open API and Plugin Development
How to get cursor position in the current editor?
0 votes
Created
June 02, 2020 17:09
Java instrumentation. Be prepared, this is the "dark side".
Community
IntelliJ IDEA Open API and Plugin Development
Changing the funcionality of an existing component
0 votes
Created
May 20, 2020 10:22
Looking into commit history it was added at https://github.com/JetBrains/intellij-community/commit/5c03fd94b29e3ff99ffdb2064a6e8d738502c257 And the earliest branch with this commit is: idea/193.295...
Community
IntelliJ IDEA Open API and Plugin Development
PsiTreeChangeListener code tracking
0 votes
Created
May 20, 2020 10:03
Yann, could you please give a clue starting what Idea version BulkAwareDocumentListener is added? It's not presented at 192
Community
IntelliJ IDEA Open API and Plugin Development
PsiTreeChangeListener code tracking
0 votes
1
2
3
4
5
›
»