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
Edited
October 09, 2018 13:08
You can use `com.intellij.openapi.wm.WindowManager#getFrame` to get JFrame by Project.There is also `com.intellij.openapi.wm.ex.WindowManagerEx#getMostRecentFocusedWindow`.You can also try using `c...
Community
IntelliJ IDEA Open API and Plugin Development
Get active screen
0 votes
Created
September 11, 2018 14:51
>I added the git4idea.jar as a library.But you didn't add tasks.jar which is a separate plugin as well.
Community
IntelliJ IDEA Open API and Plugin Development
com.intellij.tasks.ui.TaskDialogPanelProvider
0 votes
Created
September 11, 2018 13:59
https://github.com/rieonke/idea-git-flow/blob/develop/build.gradleMight be an issue with idea-git-flow plugin gradle script on case-sensitive systems. Plugin IDs in this case should be "git4idea" a...
Community
IntelliJ IDEA Open API and Plugin Development
com.intellij.tasks.ui.TaskDialogPanelProvider
0 votes
Edited
September 11, 2018 13:42
It should be there (see https://github.com/JetBrains/intellij-community/blob/master/plugins/tasks/tasks-api/src/com/intellij/tasks/ui/TaskDialogPanelProvider.java)Which IDE build do you use to comp...
Community
IntelliJ IDEA Open API and Plugin Development
com.intellij.tasks.ui.TaskDialogPanelProvider
0 votes
Created
July 11, 2018 21:09
Probably, this one:https://github.com/JetBrains/intellij-community/blob/master/platform/platform-api/src/com/intellij/ide/ui/search/SearchableOptionContributor.java
Community
IntelliJ IDEA Open API and Plugin Development
Is SearchableOptionsContributor available now?
0 votes
Created
June 20, 2018 12:28
The difference is "per-application" vs "per-project" extension point instances.If you declare extension point using `area="IDEA_PROJECT"`, you should pass Project when getting extensions, ex: `EP_N...
Community
IntelliJ IDEA Open API and Plugin Development
Missing extension point: in area null
0 votes
Created
June 03, 2018 21:39
>how do I actually do itHow do you register it? Same way as with other extensions.https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_extensions_and_extension_points.html
Community
IntelliJ IDEA Open API and Plugin Development
How to obtain the embedded editor that shows when using VcsDiffUtil.showDiffFor()
0 votes
Created
June 01, 2018 09:55
You can register `com.intellij.diff.DiffExtension`, cast passed `DiffViewer` to `TwosideTextDiffViewer` and use `getEditor1()/getEditor2()` methods to get these editors.If you need to differentiate...
Community
IntelliJ IDEA Open API and Plugin Development
How to obtain the embedded editor that shows when using VcsDiffUtil.showDiffFor()
0 votes
Created
May 28, 2018 14:41
If you update file statuses via external process, you need to:1. notify IDE about these changes `com.intellij.openapi.vcs.changes.VcsDirtyScopeManager#markEverythingDirty` or `VcsDirtyScopeManager#...
Community
IntelliJ IDEA Open API and Plugin Development
Execute terminal action before opening GIT commit dialog
0 votes
Created
May 28, 2018 09:42
Probably, you can register `com.intellij.openapi.vcs.checkin.CheckinHandlerFactory` and perform your action in `CheckinHandlerFactory#createHandler`, `CheckinHandlerFactory#createSystemReadyHandler...
Community
IntelliJ IDEA Open API and Plugin Development
Execute terminal action before opening GIT commit dialog
0 votes
«
First
‹
Previous
Next
›
Last
»