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 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
Edited
November 01, 2019 14:11
You can take a look at https://github.com/JetBrains/intellij-community/blob/master/plugins/git4idea/src/git4idea/actions/GitShowCommitInLogAnnotationGutterActionProvider.java or https://github.com/...
Community
IntelliJ IDEA Open API and Plugin Development
annotation right click add a menu entry and get the author string
0 votes
Created
October 18, 2019 15:27
You can do it like this: EditorFactory.getInstance().getEventMulticaster().addDocumentListener(new DocumentListener() { @Override public void documentChanged(@NotNull DocumentEvent event) { Do...
Community
IntelliJ IDEA Open API and Plugin Development
DocumentListener for getting what line was changed
0 votes
Created
October 15, 2019 19:39
You can also try to propagate these changes on the fly (as soon as one of the documents is changed), if these large files can be incrementally modified.Something similar is done in https://github.c...
Community
IntelliJ IDEA Open API and Plugin Development
Subscribe to Diff Editor Close Event
0 votes
«
First
‹
Previous
Next
›
Last
»