Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Artsiom Chapialiou
Total activity
239
Last activity
November 03, 2023 11:06
Member since
October 15, 2017 18:13
Following
0 users
Followed by
0 users
Votes
141
Subscriptions
42
Activity overview
Posts (15)
Comments (41)
Sort by recent activity
Recent activity
Votes
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
Created
May 06, 2020 12:10
You'll probably need both PsiTreeChangeListener (to save Document on change event) and BulkFileListener (to proceed actual change). See similar issue and workaround: https://youtrack.jetbrains.com/...
Community
IntelliJ IDEA Open API and Plugin Development
PsiTreeChangeListener code tracking
0 votes
Created
April 23, 2020 11:30
I think this is still actual. Shouldn't ToolWindow `Id` and `Name` been separate things (separate attributes)? In my case I would like to have ToolWindow named "DeepCode" in UI but for `Id` I would...
Community
IntelliJ IDEA Open API and Plugin Development
How to define toolwindow display name different from ID?
0 votes
Created
April 04, 2020 08:35
The only solution I found is the next: public static List<PsiFile> allProjectFiles(@NotNull Project project) { final PsiManager psiManager = PsiManager.getInstance(project); final PsiDirectory pr...
Community
IntelliJ IDEA Users
Get PsiFiles in the plugin
0 votes
Next
›
Last
»