主页
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日 16:24
Following reasonable question, yes it makes sense to fix platform for `change.getAfterRevision()?.getContent()` to work as expected n all 3 cases.There must have been a reason, why it was had not b...
社区
IntelliJ IDEA Open API and Plugin Development
Get all selected changes from non-modal commit interface.
0 票
创建于
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年10月15日 23:07
You're using wrong EP - it should be "postStartupActivity", not "startupActivity".
社区
IntelliJ IDEA Open API and Plugin Development
How to auto start(initialize) plugin on project loaded?
2 票
已编辑于
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:24
First option is to rely on Disposable/Disposer mechanism (if you need to release some tab-related resources): content.setDisposer(Disposer.newDisposable { ... }) Second options is to use ContentMan...
社区
IntelliJ IDEA Open API and Plugin Development
How to execute an action when a tool window tab is closed?
1 票
创建于
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年04月04日 14:59
Sorry, I'm not sure what might be added to 2 answers above.Maybe, share your code and where it doesn't work as expected?
社区
IntelliJ IDEA Open API and Plugin Development
Custom buttons in DialogWrapper
0 票
创建于
2021年02月09日 13:17
IDE uses 'Change' to load file contents before/after (see Change#getBeforeRevision/getAfterRevision and ContentRevision#getContent / ByteBackedContentRevision#getContentAsBytes) and compares them i...
社区
IntelliJ IDEA Open API and Plugin Development
Git Diff: get modified lines
1 票
已编辑于
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 票
«
第一页
‹
上一页
下一页
›
最后
»