Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Devpriporov
Total activity
21
Last activity
September 06, 2024 21:21
Member since
September 15, 2022 15:22
Following
0 users
Followed by
0 users
Votes
1
Subscriptions
7
Activity overview
Posts (7)
Comments (6)
Sort by recent activity
Recent activity
Votes
Created
September 06, 2024 21:21
up
Community
IntelliJ IDEA Open API and Plugin Development
TextEditorCustomizer is Internal, what sould I use instead of?
0 votes
Created
September 04, 2024 06:04
It's needed to implement “scroll from source” feature. The user press some shortkey and plugin should select opened file in it's TreeModel.In this case I had focus on opened note ‘plugin’(TextEdito...
Community
IntelliJ IDEA Open API and Plugin Development
TextEditorCustomizer is Internal, what sould I use instead of?
0 votes
Edited
December 05, 2022 10:50
I made plugin(https://github.com/epm-dev-priporov/idea-notes) which brings notes into intellij idea which are outside of Proejct and are kept in some folder in home user directory. In intellij idea...
Community
IntelliJ IDEA Open API and Plugin Development
ScrollFromSource shortcut feature
0 votes
Created
October 22, 2022 09:32
althought it's not beautiful solution, because DefaultTreeModel constructor requires a tree and the model setup into other trees is a bit weird, but it works, thank you.
Community
IntelliJ IDEA Open API and Plugin Development
Proper way to create/use Tree component
0 votes
Created
October 09, 2022 06:43
found the working way to read actual data: val file = PsiManager.getInstance(project).findFile(virtualFile)!!var content = file.text.encodeToByteArray()
Community
IntelliJ IDEA Open API and Plugin Development
VirtualFile is not refreshed
1 vote
Created
September 16, 2022 07:10
thank you, the cause was that files were without extension, when I added .txt it correctly works
Community
IntelliJ IDEA Open API and Plugin Development
Open external files via SDK in text editor
0 votes