主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Aleksey Pivovarov
活动总数
801
最后的活动
2024年09月23日 14:52
成员加入日期
2013年08月06日 15:41
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
444
活动概览
文章(0)
帖子(0)
评论(357)
按最近的活动排序
最近的活动
投票数
已编辑于
2018年10月09日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Get active screen
0 票
创建于
2018年09月11日 14:51
>I added the git4idea.jar as a library.But you didn't add tasks.jar which is a separate plugin as well.
社区
IntelliJ IDEA Open API and Plugin Development
com.intellij.tasks.ui.TaskDialogPanelProvider
0 票
创建于
2018年09月11日 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...
社区
IntelliJ IDEA Open API and Plugin Development
com.intellij.tasks.ui.TaskDialogPanelProvider
0 票
已编辑于
2018年09月11日 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...
社区
IntelliJ IDEA Open API and Plugin Development
com.intellij.tasks.ui.TaskDialogPanelProvider
0 票
创建于
2018年07月11日 21:09
Probably, this one:https://github.com/JetBrains/intellij-community/blob/master/platform/platform-api/src/com/intellij/ide/ui/search/SearchableOptionContributor.java
社区
IntelliJ IDEA Open API and Plugin Development
Is SearchableOptionsContributor available now?
0 票
创建于
2018年06月20日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Missing extension point: in area null
0 票
创建于
2018年06月03日 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
社区
IntelliJ IDEA Open API and Plugin Development
How to obtain the embedded editor that shows when using VcsDiffUtil.showDiffFor()
0 票
创建于
2018年06月01日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to obtain the embedded editor that shows when using VcsDiffUtil.showDiffFor()
0 票
创建于
2018年05月28日 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#...
社区
IntelliJ IDEA Open API and Plugin Development
Execute terminal action before opening GIT commit dialog
0 票
创建于
2018年05月28日 09:42
Probably, you can register `com.intellij.openapi.vcs.checkin.CheckinHandlerFactory` and perform your action in `CheckinHandlerFactory#createHandler`, `CheckinHandlerFactory#createSystemReadyHandler...
社区
IntelliJ IDEA Open API and Plugin Development
Execute terminal action before opening GIT commit dialog
0 票
«
第一页
‹
上一页
下一页
›
最后
»