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 01, 2021 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...
Community
IntelliJ IDEA Open API and Plugin Development
Get all selected changes from non-modal commit interface.
0 votes
Edited
May 10, 2021 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).
Community
IntelliJ IDEA Open API and Plugin Development
How to display diff manager in order to compare two strings
0 votes
Created
May 02, 2021 09:11
You can use "rangeHighlighter.setEditorFilter(MarkupEditorFilterFactory.createIsNotDiffFilter());". Or directly check for "com.intellij.openapi.diff.impl.DiffUtil#isDiffEditor(Editor)".
Community
IntelliJ IDEA Open API and Plugin Development
Hide gutter in diff
0 votes
Edited
January 07, 2021 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...
Community
IntelliJ IDEA Open API and Plugin Development
No Reproducable Error
0 votes
Edited
January 04, 2021 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...
Community
IntelliJ IDEA Open API and Plugin Development
Integration into Vcs Commit command
0 votes
Edited
December 07, 2020 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...
Community
IntelliJ IDEA Open API and Plugin Development
Why am I getting an incomplete file path for diff view action (Diff.EditorPopupMenu)?
0 votes
Created
October 11, 2020 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.
Community
IntelliJ IDEA Open API and Plugin Development
Access toolwindow from an action
0 votes
Created
September 17, 2020 07:46
These were added in 20.3 version. You can use "Commit"/"Cancel" string instead.
Community
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 votes
Created
September 16, 2020 16:06
Yes. For example, like following: boolean shouldCommit = Messages.showYesNoDialog(myProject, "Are you sure you want to ignore the warning and commit a...
Community
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 votes
Created
September 14, 2020 10:47
Yes, see ReturnResult.CANCEL.
Community
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 votes
«
First
‹
Previous
Next
›
Last
»