主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2019年11月21日 13:35
They will be available in 2020.1 branch. The first EAP build should be published at the end of january.
社区
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 票
创建于
2019年11月19日 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` ...
社区
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 票
已编辑于
2019年11月19日 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...
社区
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 票
创建于
2019年11月19日 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...
社区
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 票
创建于
2019年11月18日 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...
社区
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 票
创建于
2019年11月18日 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...
社区
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 票
创建于
2019年11月18日 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...
社区
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 票
创建于
2019年11月18日 12:09
>The UI seems less responsive when I change tabOn second thought, calling "findVersioningVcs" above might be the issue here.
社区
IntelliJ IDEA Open API and Plugin Development
What is the best way to get the branch of a file ?
0 票
创建于
2019年11月18日 12:00
>ProjectLevelVcsManager.getInstance(project).findVersioningVcs(file);You should not need to call this method.>if (provider.getClass().getName().contains(vcsFor.getName()))`BranchStateProvider` shou...
社区
IntelliJ IDEA Open API and Plugin Development
What is the best way to get the branch of a file ?
0 票
创建于
2019年11月18日 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()....
社区
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 票
«
第一页
‹
上一页
下一页
›
最后
»