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
Edited
August 01, 2020 10:09
Also, you're using in-memory mock VFS paths together with java.io.File. This is likely to cause issues. UPD: It should not be an issue, as "temp:///" file system is disabled by default.
Community
IntelliJ IDEA Open API and Plugin Development
Testing plugin action using testData, but no repository found
0 votes
Created
August 01, 2020 09:58
Memory leak might be caused by second createTempDirTestFixture call. Using 'myFixture.getTempDirPath()' should fix the issue.
Community
IntelliJ IDEA Open API and Plugin Development
Testing plugin action using testData, but no repository found
0 votes
Created
July 31, 2020 22:10
It's better to explicitly make sure that IDE knows about renamed directory, see VfsUtil.markDirtyAndRefresh(). Main issue is that test root needs to be registered in vcs mappings (the ones from "Se...
Community
IntelliJ IDEA Open API and Plugin Development
Testing plugin action using testData, but no repository found
0 votes
Created
July 31, 2020 18:05
VFS does not reflect every change in editor.You can subscribe for DocumentListener multicaster, <editorFactoryDocumentListener implementation=.../>.
Community
IntelliJ IDEA Open API and Plugin Development
Vfs listener is not notified.
0 votes
Created
July 23, 2020 15:41
You can register com.intellij.vcs.log.ui.highlighters.VcsLogHighlighterFactory.<logHighlighterFactory implementation="MyFactory"/>See https://github.com/JetBrains/intellij-community/blob/8bf3398e57...
Community
IntelliJ IDEA Open API and Plugin Development
Git log - how can I change text color of certain commits?
0 votes
Created
July 09, 2020 09:42
You might want to try 'git log HEAD --follow -- file.txt' to avoid parameter ambiguity.
Community
IntelliJ IDEA Open API and Plugin Development
Git4Idea: GitHistoryUtils.history() with "--follow" parameter leads to VcsException bad revision
0 votes
Created
June 22, 2020 10:47
Markdown implementation can be found here:https://github.com/JetBrains/intellij-community/blob/master/plugins/markdown/src/org/intellij/plugins/markdown/ui/preview/MarkdownSplitEditor.java>There ar...
Community
IntelliJ IDEA Open API and Plugin Development
How to use nested editor?
0 votes
Created
June 16, 2020 10:13
There seems to be a typo in docs - the key should be "require-restart".
Community
IntelliJ IDEA Open API and Plugin Development
Restart button doesn't appear after installed a custom plugin in IntelliJ 2020.1
0 votes
Edited
May 20, 2020 13:45
No. Only re-implementing this DiffTool from scratch or adding highlighting in addition to existing.
Community
IntelliJ IDEA Open API and Plugin Development
Custom annotations for diff view
0 votes
Edited
May 08, 2020 13:32
No, there's no API to customize highlighting style/colors. You might try to add some customizations on top using 'DiffExtension''.You'll need to cast DiffViewer to TwosideTextDiffViewer to get to t...
Community
IntelliJ IDEA Open API and Plugin Development
Custom annotations for diff view
0 votes
«
First
‹
Previous
Next
›
Last
»