主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2019年02月06日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Can I send a stacktrace into to a stacktrace console?
0 票
已编辑于
2019年01月16日 15:33
You can use GitVcsApplicationSettings.getInstance().setPathToGit(...); // application settingsGitVcsSettings.getInstance(project).setPathToGit(...); // per-project settings You will need to depend...
社区
IntelliJ IDEA Open API and Plugin Development
Is it possible to set Path to Git executable in plugin
0 票
已编辑于
2019年01月04日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to add an item to the menu Intellij IDEA
0 票
创建于
2019年01月04日 11:37
Only one instance of `StartupActivity` will be created created, but `void runActivity(Project project);` method will be called for each project.
社区
IntelliJ IDEA Open API and Plugin Development
How to auto start(initialize) plugin on project loaded?
0 票
创建于
2019年01月03日 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...
社区
IntelliJ IDEA Open API and Plugin Development
File | Synchronize Function in code
0 票
已编辑于
2018年12月24日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Better external diff integration
0 票
已编辑于
2018年12月24日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Better external diff integration
0 票
已编辑于
2018年12月20日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Better external diff integration
0 票
创建于
2018年12月20日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Better external diff integration
0 票
创建于
2018年11月15日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to show "speech bubble" in plugin?
0 票
«
第一页
‹
上一页
下一页
›
最后
»