主页
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年03月29日 13:55
You need to modify your `plugin.xml` and add dependency on git4idea plugin. <depends>Git4Idea</depends> See https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_dependencies.html
社区
IntelliJ IDEA Open API and Plugin Development
how to get Git branch name, commit IDs from local branch?
3 票
创建于
2021年10月15日 23:07
You're using wrong EP - it should be "postStartupActivity", not "startupActivity".
社区
IntelliJ IDEA Open API and Plugin Development
How to auto start(initialize) plugin on project loaded?
2 票
已编辑于
2019年08月19日 13:14
Default renderer for JBTable headers was changed (and no longer can be cast to the `DefaultTableCellRenderer` or `JComponent`).You can update your code like this (it should work with all IDE versio...
社区
IntelliJ IDEA Open API and Plugin Development
Getting java.lang.ClassCastException when using "DefaultTableCellRenderer"
2 票
创建于
2019年08月05日 16:19
See `com.intellij.openapi.startup.StartupActivity` interface. Note, that activities for "com.intellij.postStartupActivity" ExtensionPoint will be called _during_ project opening. So some things mig...
社区
IntelliJ IDEA Open API and Plugin Development
How to run code once at project open
2 票
创建于
2018年11月10日 01:55
You can implement `com.intellij.openapi.wm.StatusBarWidget` and register it using StatusBar statusBar = WindowManager.getInstance().getStatusBar(project);if (statusBar != null) statusBar.addWidget...
社区
IntelliJ IDEA Open API and Plugin Development
Basic question for placing a plugin in the status bar
2 票
创建于
2018年01月12日 13:55
Probably, you need to add `canCloseContents="true"` parameter to the toolwindow EP.Ex: https://github.com/JetBrains/intellij-community/blob/master/platform/platform-resources/src/META-INF/VcsExtens...
社区
IntelliJ IDEA Open API and Plugin Development
Create closeable ToolWindow Tab
2 票
创建于
2016年11月28日 08:59
DialogWrapper uses JDialog under the hood. You can access it via `DialogWrapper.getWindow()`.If you need JFrame, you can take a look at FrameWrapper.
社区
IntelliJ IDEA Open API and Plugin Development
Setting icon to the dialog created using Dialog Wrapper
2 票
创建于
2016年10月31日 10:45
No, it's not possible (it would require us to load whole project content into memory to track changes).If you do need changed lines, you might look at `com.intellij.openapi.editor.event.DocumentLis...
社区
IntelliJ IDEA Open API and Plugin Development
How to find affected lines of code in every change in every files of the project?
2 票
创建于
2023年03月28日 16:18
To follow up, there's a gray area (in a sense, that it's more of poorly-hidden internal data structures, than API) to access "partially included into commit" files (aka checkboxes in diff viewer gu...
社区
IntelliJ IDEA Open API and Plugin Development
How to get the list of files that are selected in the commit dialog?
1 票
创建于
2023年03月27日 14:42
There is no direct data key. It is further complicated by three (and a half) different UIs for commit - Modal, Git Staging and Non-Modal.1) You can use 'com.intellij.openapi.vcs.VcsDataKeys#COMMIT_...
社区
IntelliJ IDEA Open API and Plugin Development
How to get the list of files that are selected in the commit dialog?
2 票
下一页
›
最后
»