主页
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月26日 17:34
Probably, you can create this group in runtime via `com.intellij.openapi.actionSystem.ActionManager`: String id = "MyId";ActionManager am = ActionManager.getInstance();DefaultActionGroup myGroup = ...
社区
IntelliJ IDEA Open API and Plugin Development
Create two plugins with actions in same (custom) group
1 票
创建于
2019年01月04日 11:11
If you need to execute some code when Project is opened, you can use `com.intellij.openapi.startup.StartupActivity`: <extensions defaultExtensionNs="com.intellij"> <postStartupActivity implementat...
社区
IntelliJ IDEA Open API and Plugin Development
How to auto start(initialize) plugin on project loaded?
1 票
已编辑于
2019年01月03日 12:15
You can use one of the methods in `git4idea.history.GitHistoryUtils`. See https://intellij-support.jetbrains.com/hc/en-us/community/posts/360001208300-Get-a-list-of-commits-in-projectHow do you get...
社区
IntelliJ IDEA Open API and Plugin Development
Extract all commits from VCS
1 票
已编辑于
2018年12月15日 11:57
NoSuchMethodException: models.TestState.<init>() PersistentStateComponent deserialisation logic can't create objects without default constructor.You can store state in a separate data object - see ...
社区
IntelliJ IDEA Open API and Plugin Development
Cannot save PersistentStateComponent when class has project even if project is private
1 票
创建于
2018年11月27日 17:30
`GitHistoryUtils.loadDetails` reads commits from `git log` command output.You can try passing "--reverse" argument after `handler` to force git list commits from old to new.
社区
IntelliJ IDEA Open API and Plugin Development
Find GitCommit by it's Hash
1 票
创建于
2018年10月18日 16:35
See `com.intellij.ide.AppLifecycleListener#appClosing`.ex: `ApplicationManager.getApplication().getMessageBus().connect().subscribe(AppLifecycleListener.TOPIC, myListener)`
社区
IntelliJ IDEA Open API and Plugin Development
Detecting ide closing
1 票
创建于
2018年09月25日 00:00
Yes, you can pass new EmptyProgressIndicator (or just `com.intellij.openapi.progress.DumbProgressIndicator#INSTANCE`).Or you can use `com.intellij.openapi.progress.Task.Backgroundable` / `com.intel...
社区
IntelliJ IDEA Open API and Plugin Development
Diff between two commits in lines
1 票
创建于
2018年09月24日 23:23
You can use `com.intellij.diff.comparison.ComparisonManager`.Ex: `ComparisonManager#compareLines(CharSequence, CharSequence, ComparisonPolicy, ProgressIndicator)` method.
社区
IntelliJ IDEA Open API and Plugin Development
Diff between two commits in lines
1 票
已编辑于
2018年07月25日 14:55
Это сообщение - кастомная JPanel, не входящая в community.(JEditorPane с HyperlinkListener для экшенов, рядом с `com.intellij.ui.components.labels.LinkLabel` для крестика)
社区
IntelliJ IDEA Open API and Plugin Development
How to add a wave underlining for a list item
1 票
已编辑于
2018年07月25日 13:36
You can use `com.intellij.ui.ColoredListCellRenderer` (that is based on `com.intellij.ui.SimpleColoredComponent`)Something like `append("text", new SimpleTextAttributes(SimpleTextAttributes.STYLE_W...
社区
IntelliJ IDEA Open API and Plugin Development
How to add a wave underlining for a list item
1 票
«
第一页
‹
上一页
下一页
›
最后
»