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
November 21, 2019 13:35
They will be available in 2020.1 branch. The first EAP build should be published at the end of january.
Community
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 votes
Created
November 19, 2019 19:05
>to control the tooltip, the action and the cursor. The Aspect doesn't meet my need`LineAnnotationAspect` and `EditorGutterAction` seems to do this just fine ?`LineAnnotationAspect.getTooltipText` ...
Community
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 votes
Edited
November 19, 2019 17:58
What do you need to show in this gutter?Maybe, a simpler EP will do: public interface AnnotationGutterColumnProvider { @Nullable LineAnnotationAspect createColumn(@NotNull FileAnnotation annotati...
Community
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 votes
Created
November 19, 2019 12:53
>But it may break some plugins if they're use LineInfo with reflection before.If LineInfo delegates its methods to CommitInfo, these plugins should not be broken.(Unless they use reflection to acce...
Community
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 votes
Created
November 18, 2019 17:18
Yes, we do. See https://github.com/JetBrains/intellij-community/pullsProbably, we can store `ListInfo(CommitInfo commitInfo, int lineNumber, int originalLineNumber)`. This should not dramatically i...
Community
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 votes
Created
November 18, 2019 15:38
You can use VirtualFile root = VcsUtil.getVcsRootFor(myProject, myFilePath); // @Nullable, but should be there. Can reuse `GitRepository.getRoot` from GitAnnotationProvider above, if overridden.St...
Community
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 votes
Created
November 18, 2019 13:20
>Anyway, an easy way to extend Annotate view would be great.Yes, but it would require complete overhaul of everything related to it.Even if LineInfo is made public and has additional data in it, on...
Community
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 votes
Created
November 18, 2019 12:09
>The UI seems less responsive when I change tabOn second thought, calling "findVersioningVcs" above might be the issue here.
Community
IntelliJ IDEA Open API and Plugin Development
What is the best way to get the branch of a file ?
0 votes
Created
November 18, 2019 12:00
>ProjectLevelVcsManager.getInstance(project).findVersioningVcs(file);You should not need to call this method.>if (provider.getClass().getName().contains(vcsFor.getName()))`BranchStateProvider` shou...
Community
IntelliJ IDEA Open API and Plugin Development
What is the best way to get the branch of a file ?
0 votes
Created
November 18, 2019 10:39
>and make LineInfo public?Yes, it is possible.>to add line revision number and previous line revision number`LineInfo.getFileRevision().getRevisionNumber()` and `LineInfo.getPreviousFileRevision()....
Community
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 votes
«
First
‹
Previous
Next
›
Last
»