主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2021年11月01日 15:50
>there are a few things that should be taken into account in order to make it workTrue. There are no explicit API to get this information so far. But one can combine multiple calls to get it.>TodoC...
社区
IntelliJ IDEA Open API and Plugin Development
Get all selected changes from non-modal commit interface.
0 票
已编辑于
2021年05月10日 12:53
Probably, you're looking for "Open Blank Diff Window" action (https://www.jetbrains.com/help/idea/comparing-files-and-folders.html#compare-any-text-sources).
社区
IntelliJ IDEA Open API and Plugin Development
How to display diff manager in order to compare two strings
0 票
创建于
2021年05月02日 09:11
You can use "rangeHighlighter.setEditorFilter(MarkupEditorFilterFactory.createIsNotDiffFilter());". Or directly check for "com.intellij.openapi.diff.impl.DiffUtil#isDiffEditor(Editor)".
社区
IntelliJ IDEA Open API and Plugin Development
Hide gutter in diff
0 票
已编辑于
2021年01月07日 16:48
The field type was changed. This breaks binary compatibility, but not the source compatibility. Thus reproduction issues.>i must often fix my Plugin "Git Scope" after releases from JetBrainsYes, so...
社区
IntelliJ IDEA Open API and Plugin Development
No Reproducable Error
0 票
已编辑于
2021年01月04日 13:51
You can use com.intellij.openapi.vcs.checkin.CheckinHandler. See https://plugins.jetbrains.com/intellij-platform-explorer/?extensions=com.intellij.checkinHandlerFactory for usage examples.Ex: Unlo...
社区
IntelliJ IDEA Open API and Plugin Development
Integration into Vcs Commit command
0 票
已编辑于
2020年12月07日 10:59
In this case you might want to look at REVISION_INFO mentioned above. It is set for contents loaded from vcs and contains corresponding revision number.For example: this key is used by "Annotate (w...
社区
IntelliJ IDEA Open API and Plugin Development
Why am I getting an incomplete file path for diff view action (Diff.EditorPopupMenu)?
0 票
创建于
2020年10月11日 10:56
Could you explain what you tried and what went wrong? It is hard to guess what was "expected" from them in your case.
社区
IntelliJ IDEA Open API and Plugin Development
Access toolwindow from an action
0 票
创建于
2020年09月17日 07:46
These were added in 20.3 version. You can use "Commit"/"Cancel" string instead.
社区
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 票
创建于
2020年09月16日 16:06
Yes. For example, like following: boolean shouldCommit = Messages.showYesNoDialog(myProject, "Are you sure you want to ignore the warning and commit a...
社区
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 票
创建于
2020年09月14日 10:47
Yes, see ReturnResult.CANCEL.
社区
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 票
«
第一页
‹
上一页
下一页
›
最后
»