主页
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月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 票
创建于
2019年10月11日 08:29
You can create AnAction using `com.intellij.openapi.actionSystem.ex.CheckboxAction` and add it to the `Diff.ViewerToolbar` action group.
社区
IntelliJ IDEA Open API and Plugin Development
Add checkbox to Diff toolbar
0 票
创建于
2019年10月06日 18:38
http://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_dependencies.htmlhttps://github.com/JetBrains/gradle-intellij-plugin#configurationHelp states you can also use project(':su...
社区
IntelliJ IDEA Open API and Plugin Development
Communicate between two plugins using MessageBus
0 票
创建于
2019年10月06日 18:20
>The jars from Plugin A are placed the a libs folder in Plugin B.This might be the potential issue: plugin B should not use its own copy of MarkerNotifier, but rely on the plugin A (it should be av...
社区
IntelliJ IDEA Open API and Plugin Development
Communicate between two plugins using MessageBus
0 票
创建于
2019年09月25日 11:07
You can always follow these exceptions to https://youtrack.jetbrains.com directly.Yes. There are no assertions at the time, but modifying them from another thread is likely to cause a race somewhere.
社区
IntelliJ IDEA Open API and Plugin Development
What is the correct way to register an extension point in code instead of plugin.xml?
0 票
创建于
2019年09月22日 16:12
You can try using `EditorActionManager.getInstance().setActionHandler` instead.There are no generic approach for any extension, as not every extension point can track its modifications (and your mo...
社区
IntelliJ IDEA Open API and Plugin Development
What is the correct way to register an extension point in code instead of plugin.xml?
0 票
创建于
2019年09月21日 22:48
Similar feature already exists in IDE: https://youtrack.jetbrains.com/issue/IDEA-69150Probably, you can use its implementation as a reference.https://github.com/JetBrains/intellij-community/blob/ma...
社区
IntelliJ IDEA Open API and Plugin Development
Plugin - breakpoint highlighter
0 票
创建于
2019年09月21日 22:31
Diff viewer ignores FoldingBuilder of a language and uses its own (that is based on changed lines).There are no API to modify these foldings.
社区
IntelliJ IDEA Open API and Plugin Development
Code Folding for diff view
0 票
«
第一页
‹
上一页
下一页
›
最后
»