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
February 26, 2019 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 = ...
Community
IntelliJ IDEA Open API and Plugin Development
Create two plugins with actions in same (custom) group
1 vote
Created
January 04, 2019 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to auto start(initialize) plugin on project loaded?
1 vote
Edited
January 03, 2019 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...
Community
IntelliJ IDEA Open API and Plugin Development
Extract all commits from VCS
1 vote
Edited
December 15, 2018 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
Cannot save PersistentStateComponent when class has project even if project is private
1 vote
Created
November 27, 2018 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.
Community
IntelliJ IDEA Open API and Plugin Development
Find GitCommit by it's Hash
1 vote
Created
October 18, 2018 16:35
See `com.intellij.ide.AppLifecycleListener#appClosing`.ex: `ApplicationManager.getApplication().getMessageBus().connect().subscribe(AppLifecycleListener.TOPIC, myListener)`
Community
IntelliJ IDEA Open API and Plugin Development
Detecting ide closing
1 vote
Created
September 25, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
Diff between two commits in lines
1 vote
Created
September 24, 2018 23:23
You can use `com.intellij.diff.comparison.ComparisonManager`.Ex: `ComparisonManager#compareLines(CharSequence, CharSequence, ComparisonPolicy, ProgressIndicator)` method.
Community
IntelliJ IDEA Open API and Plugin Development
Diff between two commits in lines
1 vote
Edited
July 25, 2018 14:55
Это сообщение - кастомная JPanel, не входящая в community.(JEditorPane с HyperlinkListener для экшенов, рядом с `com.intellij.ui.components.labels.LinkLabel` для крестика)
Community
IntelliJ IDEA Open API and Plugin Development
How to add a wave underlining for a list item
1 vote
Edited
July 25, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to add a wave underlining for a list item
1 vote
«
First
‹
Previous
Next
›
Last
»