主页
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年11月18日 10:29
I do not think there are an easy way to extend this part.
社区
IntelliJ IDEA Open API and Plugin Development
I want to extend the Annotate view of Git VCS. But ...
0 票
创建于
2019年11月17日 18:59
You can register an application component and override `com.intellij.openapi.components.BaseComponent#initComponent`:https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_compo...
社区
IntelliJ IDEA Open API and Plugin Development
How to run code before plugin is used?
0 票
已编辑于
2019年11月17日 18:53
See an answer to the similar question:https://intellij-support.jetbrains.com/hc/en-us/community/posts/360004324499-How-to-hook-into-click-select-event-of-the-project-view->we have no listener to no...
社区
IntelliJ IDEA Open API and Plugin Development
How to run a plugin when we click on a directory or file of the project view?
0 票
创建于
2019年11月17日 15:05
Do you need to create a new file or get an existing one from context? What should it do?
社区
IntelliJ IDEA Open API and Plugin Development
Vcs related problem
0 票
已编辑于
2019年11月03日 20:08
Creating UI in `SwissAsConfig.createComponent` should solve the problem: public JComponent createComponent() { if (configPanel == null) configPanel = new ...; return configPanel.getMainPanel()} ...
社区
IntelliJ IDEA Open API and Plugin Development
how to use a TextFieldWithCompletion inside of a configuration window that was build with the form builder ?
0 票
已编辑于
2019年11月03日 16:41
Please, share whole stacktrace.UI components should be created on Swing thread (aka Event Dispatch Thread/AWT/EDT), so the problem should be above SwissAsConfig constructor call.
社区
IntelliJ IDEA Open API and Plugin Development
how to use a TextFieldWithCompletion inside of a configuration window that was build with the form builder ?
0 票
创建于
2019年11月01日 15:56
I don't think it is possible.
社区
IntelliJ IDEA Open API and Plugin Development
annotation right click add a menu entry and get the author string
0 票
已编辑于
2019年11月01日 14:11
You can take a look at https://github.com/JetBrains/intellij-community/blob/master/plugins/git4idea/src/git4idea/actions/GitShowCommitInLogAnnotationGutterActionProvider.java or https://github.com/...
社区
IntelliJ IDEA Open API and Plugin Development
annotation right click add a menu entry and get the author string
0 票
创建于
2019年10月18日 15:27
You can do it like this: EditorFactory.getInstance().getEventMulticaster().addDocumentListener(new DocumentListener() { @Override public void documentChanged(@NotNull DocumentEvent event) { Do...
社区
IntelliJ IDEA Open API and Plugin Development
DocumentListener for getting what line was changed
0 票
创建于
2019年10月15日 19:39
You can also try to propagate these changes on the fly (as soon as one of the documents is changed), if these large files can be incrementally modified.Something similar is done in https://github.c...
社区
IntelliJ IDEA Open API and Plugin Development
Subscribe to Diff Editor Close Event
0 票
«
第一页
‹
上一页
下一页
›
最后
»