Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Brian Faris
Total activity
75
Last activity
April 09, 2021 21:56
Member since
February 18, 2016 17:40
Following
0 users
Followed by
0 users
Votes
3
Subscriptions
30
Activity overview
Posts (7)
Comments (35)
Sort by recent activity
Recent activity
Votes
Created
April 27, 2020 14:43
Perfect, thanks.
Community
IntelliJ IDEA Open API and Plugin Development
Plugin updates for legacy versions.
0 votes
Created
April 27, 2020 14:14
Thanks for the answer Jakub. Should we be building with the same platform version that we are targeting? For example, a plugin that targets 2019.3, I would build with 2019.3.
Community
IntelliJ IDEA Open API and Plugin Development
Plugin updates for legacy versions.
0 votes
Created
April 22, 2020 20:01
I believe you are looking for icons.jar > nodes/ModuleProgramatically, it's:AllIcons.Nodes.Module
Community
IntelliJ IDEA Open API and Plugin Development
Where can I find the Module icon ?
0 votes
Edited
April 18, 2020 10:49
You should be able to get the JBLabel you are trying to edit from AnActionEvent parameter using: JBLabel label = (JBLabel) anActionEvent.getPresentation().getClientProperty(CustomComponentAction.CO...
Community
IntelliJ IDEA Open API and Plugin Development
How to manually update AnAction?
0 votes
Edited
April 13, 2020 17:20
Yes, you would create a branches in VCS/Git for 2019.2, 2019.3 and 2020.1. You can create a git repository for 2020.1 and then create the other specified branches off of it. That way they can have ...
Community
IntelliJ IDEA Open API and Plugin Development
Deprecated API usage and new IntelliJ versions
0 votes
Edited
April 13, 2020 05:31
I haven't tested it but Editor.getMarkupModel().addRangeHighlighter() might be what you are looking for. Can get editor object with Editor editor = FileEditorManager.getInstance(project).getSelecte...
Community
IntelliJ IDEA Open API and Plugin Development
How to programmatically implement a contrasting UI style similar to code diff in ide?
0 votes
Edited
April 13, 2020 04:39
You can test your 2019.1 built plugin against 2020.1 in the build.gradle file using: intellij { updateSinceUntilBuild false plugins = ['java'] version = '2019.1'} runIde { ideDirectory ...
Community
IntelliJ IDEA Open API and Plugin Development
Deprecated API usage and new IntelliJ versions
0 votes
Edited
April 11, 2020 20:09
Here's what my settings look like for a copy of Darcula that has Tab color modified:<scheme name="_@user_Darcula" version="142" parent_scheme="Darcula"><metaInfo><property name="created">2020-04-11...
Community
IntelliJ IDEA Open API and Plugin Development
How do I change the color of the underline of the active editor tab?
0 votes
Edited
April 11, 2020 18:24
In your scheme .xml file for your IDE settings, try adding: <option name="TAB_UNDERLINE" value="FFC0CB"/> in <colors> element. Programmaticly, this works: EditorColorsManager.getInstance().getGloba...
Community
IntelliJ IDEA Open API and Plugin Development
How do I change the color of the underline of the active editor tab?
0 votes
Created
March 19, 2020 19:40
By "change the project" do you mean to load a new project in the same window or a new project in a new window?For the same window, I imagine this would work: ProjectManager.getInstance().addProject...
Community
IntelliJ IDEA Open API and Plugin Development
clearing tool window on project change
0 votes
«
First
‹
Previous
Next
›
Last
»