Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Aleksey Pivovarov
Total activity
801
Last activity
September 23, 2024 14:52
Member since
August 06, 2013 15:41
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
444
Activity overview
Articles (0)
Posts (0)
Comments (357)
Sort by recent activity
Recent activity
Votes
Created
November 18, 2019 12:09
>The UI seems less responsive when I change tabOn second thought, calling "findVersioningVcs" above might be the issue here.
Community
IntelliJ IDEA Open API and Plugin Development
What is the best way to get the branch of a file ?
0 votes
Created
November 18, 2019 12:00
>ProjectLevelVcsManager.getInstance(project).findVersioningVcs(file);You should not need to call this method.>if (provider.getClass().getName().contains(vcsFor.getName()))`BranchStateProvider` shou...
Community
IntelliJ IDEA Open API and Plugin Development
What is the best way to get the branch of a file ?
0 votes
Created
November 18, 2019 10:39
>and make LineInfo public?Yes, it is possible.>to add line revision number and previous line revision number`LineInfo.getFileRevision().getRevisionNumber()` and `LineInfo.getPreviousFileRevision()....
Community
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 votes
Created
November 18, 2019 10:29
I do not think there are an easy way to extend this part.
Community
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 votes
Created
November 17, 2019 18:59
You can register an application component and override `com.intellij.openapi.components.BaseComponent#initComponent`:https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_compo...
Community
IntelliJ IDEA Open API and Plugin Development
How to run code before plugin is used?
0 votes
Edited
November 17, 2019 18:53
See an answer to the similar question:https://intellij-support.jetbrains.com/hc/en-us/community/posts/360004324499-How-to-hook-into-click-select-event-of-the-project-view->we have no listener to no...
Community
IntelliJ IDEA Open API and Plugin Development
How to run a plugin when we click on a directory or file of the project view?
0 votes
Created
November 17, 2019 15:05
Do you need to create a new file or get an existing one from context? What should it do?
Community
IntelliJ IDEA Open API and Plugin Development
Vcs related problem
0 votes
Edited
November 03, 2019 20:08
Creating UI in `SwissAsConfig.createComponent` should solve the problem: public JComponent createComponent() { if (configPanel == null) configPanel = new ...; return configPanel.getMainPanel()} ...
Community
IntelliJ IDEA Open API and Plugin Development
how to use a TextFieldWithCompletion inside of a configuration window that was build with the form builder ?
0 votes
Edited
November 03, 2019 16:41
Please, share whole stacktrace.UI components should be created on Swing thread (aka Event Dispatch Thread/AWT/EDT), so the problem should be above SwissAsConfig constructor call.
Community
IntelliJ IDEA Open API and Plugin Development
how to use a TextFieldWithCompletion inside of a configuration window that was build with the form builder ?
0 votes
Created
November 01, 2019 15:56
I don't think it is possible.
Community
IntelliJ IDEA Open API and Plugin Development
annotation right click add a menu entry and get the author string
0 votes
«
First
‹
Previous
Next
›
Last
»