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
Created
August 15, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
how to invoke the built-in diff action
1 vote
Created
August 11, 2017 18:31
Yes, you can use com.intellij.diff.DiffManager#createRequestPanelSee alsocom.intellij.diff.DiffRequestPanelcom.intellij.diff.DiffContentFactorycom.intellij.diff.DiffRequestFactorycom.intellij.diff....
Community
IntelliJ IDEA Open API and Plugin Development
how to invoke the built-in diff action
1 vote
Edited
March 02, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
Change icon of a JButton when change the theme
1 vote
Edited
October 19, 2016 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`.
Community
IntelliJ IDEA Open API and Plugin Development
Get Instance of Toolwindow
1 vote
Created
October 17, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to find affected lines of code in every change in every files of the project?
1 vote
Created
October 10, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
Content assist to commit message
1 vote
Created
June 22, 2016 11:15
com.intellij.ide.fileTemplates.impl.FileTemplateConfigurablecom.intellij.ide.fileTemplates.impl.AllFileTemplatesConfigurable
Community
IntelliJ IDEA Open API and Plugin Development
Get UI from IDEA
1 vote
Created
June 21, 2016 14:29
Editor editor;ColorScheme scheme = editor.getColorsScheme(); // or EditorColorsManager.getInstance().getGlobalScheme()TextAttributes attributes = scheme.getAttributes(EditorColors.LIVE_TEMPLATE_ATT...
Community
IntelliJ IDEA Open API and Plugin Development
ColorKey/getter for template variable color
1 vote
Created
June 21, 2016 12:53
Maybe, EditorTextField.addSettingsProvider() will help? This provider will be executed every time a new Editor is created.
Community
IntelliJ IDEA Open API and Plugin Development
EditorTextField getEditor return null
1 vote
Edited
June 21, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
Run custom plugin from context menu
1 vote
«
First
‹
Previous
Next
›
Last
»