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
February 06, 2019 13:05
See `com.intellij.unscramble.AnalyzeStacktraceUtil#addConsole`https://github.com/JetBrains/intellij-community/blob/master/platform/lang-impl/src/com/intellij/unscramble/AnalyzeStacktraceUtil.java#L...
Community
IntelliJ IDEA Open API and Plugin Development
Can I send a stacktrace into to a stacktrace console?
0 votes
Edited
January 16, 2019 15:33
You can use GitVcsApplicationSettings.getInstance().setPathToGit(...); // application settingsGitVcsSettings.getInstance(project).setPathToGit(...); // per-project settings You will need to depend...
Community
IntelliJ IDEA Open API and Plugin Development
Is it possible to set Path to Git executable in plugin
0 votes
Edited
January 04, 2019 15:39
You can register `com.intellij.openapi.options.Configurable` extension.See multiple examples in community source code. (ex: com.intellij.openapi.updateSettings.impl.UpdateSettingsConfigurable)https...
Community
IntelliJ IDEA Open API and Plugin Development
How to add an item to the menu Intellij IDEA
0 votes
Created
January 04, 2019 11:37
Only one instance of `StartupActivity` will be created created, but `void runActivity(Project project);` method will be called for each project.
Community
IntelliJ IDEA Open API and Plugin Development
How to auto start(initialize) plugin on project loaded?
0 votes
Created
January 03, 2019 12:24
Probably, same effect can be achieved in a better way (by performing refresh asynchronously and refreshing only necessary part of file system).Ex: by using `LocalFileSystem.getInstance().refreshFil...
Community
IntelliJ IDEA Open API and Plugin Development
File | Synchronize Function in code
0 votes
Edited
December 24, 2018 10:16
Probably, it would be better to integrate with "native" "git add -p" routine, directly modifying staging area (and implementing some way to commit staged changes from IDE).Related issue: https://yo...
Community
IntelliJ IDEA Open API and Plugin Development
Better external diff integration
0 votes
Edited
December 24, 2018 10:17
Actually, same thing applies to "partial changelists".Internally, they are implemented in the same way (and you'll face same issues, as described above).Anyway, you can take a look at `com.intellij...
Community
IntelliJ IDEA Open API and Plugin Development
Better external diff integration
0 votes
Edited
December 20, 2018 21:31
So, you're trying to improve integration with a specific tool, that is currently registered in "File | Settings | Tools | Diff & Merge | External Diff Tools" ?I do not think, it it possible to do f...
Community
IntelliJ IDEA Open API and Plugin Development
Better external diff integration
0 votes
Created
December 20, 2018 00:17
Yes, it might be hard to integrate into existing implementations.Probably, `com.intellij.diff.DiffExtension` and a couple of customizable ActionGroups is the best you can get here.It should be easi...
Community
IntelliJ IDEA Open API and Plugin Development
Better external diff integration
0 votes
Created
November 15, 2018 12:49
The best "complete" (and up-to-date) documentation would be https://github.com/JetBrains/intellij-community sources.(ex: you can find existing popup you like and check how it was implemented)Such p...
Community
IntelliJ IDEA Open API and Plugin Development
How to show "speech bubble" in plugin?
0 votes
«
First
‹
Previous
Next
›
Last
»