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
November 01, 2018 18:07
Try using a BorderLayout instead and add 2 JPanels to it (one at BorderLayout.EAST and BorderLayout.WEST).
Community
IntelliJ IDEA Open API and Plugin Development
ToolWindow incorrect alignments.
0 votes
Created
October 03, 2018 00:10
Create a new class that implements ProjectComponent, register it in the plugin.xml, then put the code you want to run in the constructor.
Community
IntelliJ IDEA Open API and Plugin Development
Handle file opening
0 votes
Edited
October 02, 2018 03:19
File opened listener: MessageBus bus = project.getMessageBus();bus.connect().subscribe(FileEditorManagerListener.FILE_EDITOR_MANAGER, new FileEditorManagerListener() { @Override public void f...
Community
IntelliJ IDEA Open API and Plugin Development
Handle file opening
0 votes
Edited
September 01, 2018 20:59
Clearing ToolWindow: public void cleartoolwindow(Project project){ ToolWindow toolWindow = ToolWindowManager.getInstance(project).getToolWindow("SCA_Tool"); toolWindow.getContentManager().rem...
Community
IntelliJ IDEA Open API and Plugin Development
How to clear the content of a ToolWindow?
0 votes
Created
August 25, 2018 16:05
Editor switch listener: MessageBus bus = project.getMessageBus();bus.connect().subscribe(FileEditorManagerListener.FILE_EDITOR_MANAGER, new FileEditorManagerListener() { @Override public void...
Community
IntelliJ IDEA Open API and Plugin Development
Displaying a dialog box when the editor content is changed
0 votes
Created
August 10, 2018 23:11
https://github.com/JetBrains/intellij-sdk-docsThen code_samples/live_templates
Community
IntelliJ IDEA Open API and Plugin Development
Modify a java-class with live-templates
0 votes
Created
July 25, 2018 17:18
For anyone who is interested in single click behavior in the completion window, you can check out my plugin Brew Java at https://plugins.jetbrains.com/plugin/10904-brew-java . It also has right cli...
Community
IntelliJ IDEA Users
Funny completion list click behavior
0 votes
Created
June 20, 2018 12:46
Yea I'll be using that now :)
Community
IntelliJ IDEA Open API and Plugin Development
LookupManager not getting all LookupElements
0 votes
Edited
June 20, 2018 07:31
Ahh I see, thanks for the response. My plugin needs a way to access all methods/fields of object before dot operator and since code completion does this so well with the dot operator I've been usin...
Community
IntelliJ IDEA Open API and Plugin Development
LookupManager not getting all LookupElements
0 votes
Created
February 19, 2016 18:43
Now at ChooseItemAction
Community
IntelliJ IDEA Users
Funny completion list click behavior
0 votes
«
First
‹
Previous
Next
›
Last
»