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 26, 2019 09:43
This depends on @Storage parameter in @State annotation. For Project components, you can search for it in the .idea folder. (Configuration for Application components will be stored in <IDE system f...
Community
IntelliJ IDEA Open API and Plugin Development
Where are plugin component files saved (WIndows 10)?
1 vote
Created
July 15, 2019 10:51
Probably, this is caused by extraction of java plugin:https://blog.jetbrains.com/platform/2019/06/java-functionality-extracted-as-a-plugin/
Community
IntelliJ IDEA Open API and Plugin Development
Cannot find builtin plugin java for IDE
1 vote
Created
July 04, 2019 17:10
See https://github.com/JetBrains/intellij-community/blob/master/plugins/terminal/src/org/jetbrains/plugins/terminal/TerminalSettingsPanel.javaThis component is built with UI Designer, but the borde...
Community
IntelliJ IDEA Open API and Plugin Development
Custom Settings Window: UI Section Separators?
1 vote
Edited
July 03, 2019 10:31
>VirtualFile can't be created without a real reflection in LocalFileSystem.It can be. See different implementations of VirtualFile in platform code.>Is there any way to get this task doneThere are ...
Community
IntelliJ IDEA Open API and Plugin Development
Comparing directories using DiffManger
1 vote
Edited
June 26, 2019 11:21
Custom components are not supported for menus.You can remove `popup="true"` from "AsciiDoc.MyId"/"AsciiDoc.TextFormatting" groups, and the combobox should become visible on toolbar.
Community
IntelliJ IDEA Open API and Plugin Development
CustomComponentAction not rendering my custom component
1 vote
Created
June 24, 2019 11:16
You can add "add-to-group" section with "VcsToobarActions" and "VcsNavBarToobarActions" group ids.Or with the outer groups ids - "MainToolBarSettings" / "NavBarVcsGroup".
Community
IntelliJ IDEA Open API and Plugin Development
New actions on toolbar
1 vote
Edited
May 28, 2019 09:31
See com.intellij.ui.table.JBTable, JBTable.InvisibleResizableHeader and its usage in com.intellij.vcs.log.ui.table.VcsLogGraphTable as an example.Smth like this val table = JBTable(...)table.setSho...
Community
IntelliJ IDEA Open API and Plugin Development
ui-element at Version control / Log
1 vote
Created
March 27, 2019 20:54
Reflog can be replaced with a simple check of "committer-date" for latest commits. But this check can be fooled both by passing `GIT_COMMITTER_DATE` ENV and fast commit-push-pull even sequence.
Community
IntelliJ IDEA Open API and Plugin Development
Handle Git commit made not from IntelliJ UI
1 vote
Created
March 27, 2019 20:44
It is not possible to get such notification directly. (As git won't notify IDE about new commits, unless you register your own post-commit hook).There are might be somewhat hacky way to get smth si...
Community
IntelliJ IDEA Open API and Plugin Development
Handle Git commit made not from IntelliJ UI
1 vote
Created
March 10, 2019 13:28
CheckboxTreeCellRenderer is an abstract class for a reason.You should override `customizeRenderer` method to render the rest of the node: new CheckboxTree.CheckboxTreeCellRenderer() { @Override p...
Community
IntelliJ IDEA Open API and Plugin Development
CheckboxTree not Displaying Node Names
1 vote
«
First
‹
Previous
Next
›
Last
»