主页
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年05月16日 13:33
This method allows you to pass parameters to git via `String... parameters`.For example, you can add ` --max-count=1000` to limit history depth.Btw, what do you use this history for? There are coul...
社区
IntelliJ IDEA Open API and Plugin Development
How to get partial git history
0 票
创建于
2018年05月16日 09:04
You need to wrap your code into `ApplicationManager.getApplication().invokeLater(Runnable)`.See https://www.jetbrains.org/intellij/sdk/docs/basics/architectural_overview/general_threading_rules.htm...
社区
IntelliJ IDEA Open API and Plugin Development
New Editor Tab Action for plugin
0 票
创建于
2018年05月12日 15:44
Yes, you can store option state somewhere (ex: in PersistentStateComponent) and access it from multiple actions (only one of which would return `isSelected == true`).As an example, you can look at ...
社区
IntelliJ IDEA Open API and Plugin Development
A set of ToggleAction menu items that only one can be in the selected state
0 票
创建于
2018年05月01日 23:27
Another possibility is that these commits are reported out-of-order. Ex: last in the request or few thousands commits later.
社区
IntelliJ IDEA Open API and Plugin Development
Missing commits from git4idea.history.GitHistoryUtils call
0 票
创建于
2018年05月01日 21:39
This is not a known issue, so you might have to debug `GitHistoryUtils`.Are there any related warnings in IDE log ?Is there are anything unusual/common about missing commits (ex: author, affected f...
社区
IntelliJ IDEA Open API and Plugin Development
Missing commits from git4idea.history.GitHistoryUtils call
0 票
创建于
2018年04月27日 20:11
This method delegates to the `git log branchName` command, so it should return same commits as git itself. You can check if missing commits present in the output when command is executed via comman...
社区
IntelliJ IDEA Open API and Plugin Development
Missing commits from git4idea.history.GitHistoryUtils call
0 票
创建于
2018年04月26日 21:01
See `com.intellij.openapi.wm.ex.ToolWindowEx#setTitleActions`Ex:https://github.com/JetBrains/intellij-community/blob/master/platform/lang-impl/src/com/intellij/ide/favoritesTreeView/FavoritesTreeVi...
社区
IntelliJ IDEA Open API and Plugin Development
How to add button to custom tool window bar, likes Project/Structure tool window?
0 票
创建于
2018年04月19日 11:33
This part of platform is not really extendable, but the code snippet below should work.(Keep in mind, that `annotationsProvider.annotate` is a potentially slow operation, up to 30s for big/old file...
社区
IntelliJ IDEA Open API and Plugin Development
Access Repository Informations for PsjFiles
0 票
创建于
2018年04月16日 14:23
com.intellij.openapi.project.DumbService#runWhenSmart https://github.com/JetBrains/intellij-community/blob/master/platform/core-api/src/com/intellij/openapi/project/DumbService.java#L63
社区
IntelliJ IDEA Open API and Plugin Development
Hook on indexing finish event.
0 票
创建于
2018年04月13日 17:06
What do you want to do with these annotations? For example, you can load them like this (though, it's better not to access vcs from EDT or while holding readLock - so file content might be already ...
社区
IntelliJ IDEA Open API and Plugin Development
Access Repository Informations for PsjFiles
0 票
«
第一页
‹
上一页
下一页
›
最后
»