主页
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年08月26日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Where are plugin component files saved (WIndows 10)?
1 票
创建于
2019年07月15日 10:51
Probably, this is caused by extraction of java plugin:https://blog.jetbrains.com/platform/2019/06/java-functionality-extracted-as-a-plugin/
社区
IntelliJ IDEA Open API and Plugin Development
Cannot find builtin plugin java for IDE
1 票
创建于
2019年07月04日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Custom Settings Window: UI Section Separators?
1 票
已编辑于
2019年07月03日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
Comparing directories using DiffManger
1 票
已编辑于
2019年06月26日 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.
社区
IntelliJ IDEA Open API and Plugin Development
CustomComponentAction not rendering my custom component
1 票
创建于
2019年06月24日 11:16
You can add "add-to-group" section with "VcsToobarActions" and "VcsNavBarToobarActions" group ids.Or with the outer groups ids - "MainToolBarSettings" / "NavBarVcsGroup".
社区
IntelliJ IDEA Open API and Plugin Development
New actions on toolbar
1 票
已编辑于
2019年05月28日 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...
社区
IntelliJ IDEA Open API and Plugin Development
ui-element at Version control / Log
1 票
创建于
2019年03月27日 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.
社区
IntelliJ IDEA Open API and Plugin Development
Handle Git commit made not from IntelliJ UI
1 票
创建于
2019年03月27日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Handle Git commit made not from IntelliJ UI
1 票
创建于
2019年03月10日 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...
社区
IntelliJ IDEA Open API and Plugin Development
CheckboxTree not Displaying Node Names
1 票
«
第一页
‹
上一页
下一页
›
最后
»