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
May 16, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to get partial git history
0 votes
Created
May 16, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
New Editor Tab Action for plugin
0 votes
Created
May 12, 2018 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
A set of ToggleAction menu items that only one can be in the selected state
0 votes
Created
May 01, 2018 23:27
Another possibility is that these commits are reported out-of-order. Ex: last in the request or few thousands commits later.
Community
IntelliJ IDEA Open API and Plugin Development
Missing commits from git4idea.history.GitHistoryUtils call
0 votes
Created
May 01, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
Missing commits from git4idea.history.GitHistoryUtils call
0 votes
Created
April 27, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
Missing commits from git4idea.history.GitHistoryUtils call
0 votes
Created
April 26, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to add button to custom tool window bar, likes Project/Structure tool window?
0 votes
Created
April 19, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
Access Repository Informations for PsjFiles
0 votes
Created
April 16, 2018 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
Community
IntelliJ IDEA Open API and Plugin Development
Hook on indexing finish event.
0 votes
Created
April 13, 2018 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
Access Repository Informations for PsjFiles
0 votes
«
First
‹
Previous
Next
›
Last
»