主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2017年08月15日 10:29
You can scroll to particular line putting `DiffUserDataKeys.SCROLL_TO_LINE` into `UserDataHolder` of `DiffRequest`.Ex: https://github.com/JetBrains/intellij-community/blob/master/platform/diff-impl...
社区
IntelliJ IDEA Open API and Plugin Development
how to invoke the built-in diff action
1 票
创建于
2017年08月11日 18:31
Yes, you can use com.intellij.diff.DiffManager#createRequestPanelSee alsocom.intellij.diff.DiffRequestPanelcom.intellij.diff.DiffContentFactorycom.intellij.diff.DiffRequestFactorycom.intellij.diff....
社区
IntelliJ IDEA Open API and Plugin Development
how to invoke the built-in diff action
1 票
已编辑于
2017年03月02日 11:36
You might want to take a look at LafManagerListener, EditorColorsListener and UISettingsListener.Also, if you want to use different icon under darcula, you can just put it near the default one. Ico...
社区
IntelliJ IDEA Open API and Plugin Development
Change icon of a JButton when change the theme
1 票
已编辑于
2016年10月19日 12:12
Probably, you're looking for `toolwindow.getContentManager().getContents()` method.It will return all tabs in a ToolWindow, that can be added using `ContentManager.addContent`.
社区
IntelliJ IDEA Open API and Plugin Development
Get Instance of Toolwindow
1 票
创建于
2016年10月17日 09:11
Hi,Could you clarify, what kind of changes do you want to know? Ex: what is the "base version" that is being considered "unchanged" ? LocalHistory is, likely, a wrong thing to begin with (especiall...
社区
IntelliJ IDEA Open API and Plugin Development
How to find affected lines of code in every change in every files of the project?
1 票
创建于
2016年10月10日 12:36
Default CommitCompletionContributor disables all subsequent completion providers (by calling `result.stopHere()`). You should be able to specify `order` parameter in plugin.xml, so that your provid...
社区
IntelliJ IDEA Open API and Plugin Development
Content assist to commit message
1 票
创建于
2016年06月22日 11:15
com.intellij.ide.fileTemplates.impl.FileTemplateConfigurablecom.intellij.ide.fileTemplates.impl.AllFileTemplatesConfigurable
社区
IntelliJ IDEA Open API and Plugin Development
Get UI from IDEA
1 票
创建于
2016年06月21日 14:29
Editor editor;ColorScheme scheme = editor.getColorsScheme(); // or EditorColorsManager.getInstance().getGlobalScheme()TextAttributes attributes = scheme.getAttributes(EditorColors.LIVE_TEMPLATE_ATT...
社区
IntelliJ IDEA Open API and Plugin Development
ColorKey/getter for template variable color
1 票
创建于
2016年06月21日 12:53
Maybe, EditorTextField.addSettingsProvider() will help? This provider will be executed every time a new Editor is created.
社区
IntelliJ IDEA Open API and Plugin Development
EditorTextField getEditor return null
1 票
已编辑于
2016年06月21日 10:58
You can make action (or action group) invisible depending on context. http://www.jetbrains.org/intellij/sdk/docs/basics/action_system.html http://www.jetbrains.org/intellij/sdk/docs/tutorials/act...
社区
IntelliJ IDEA Open API and Plugin Development
Run custom plugin from context menu
1 票
«
第一页
‹
上一页
下一页
›
最后
»