Brian Faris

- Total activity 31
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 9
-
Created ToolWindow JButton Font/Size overridden
My plug-in features a ToolWindow that displays a series of JButtons to the user. Upon ToolWindow initialization my buttons are set with: for (int i = 0; i < codeButtons.size(); i++) { codeButton... -
Edited LookupManager not getting all LookupElements
I'm using: List<LookupElement> lookupItems = LookupManager.getActiveLookup(editor).getItems(); To get handles on the current LookupElements populated in the active lookup. The problem is that for s... -
Created Getting custom action programmaticly
I made an Action that extends AnAction and registered it to the plugin.xml. How do I get a handle on it to use in code? I need to set my jbuttons to this action but can't find it. I tried ActionMan... -
Edited FileNotFoundException
AnsweredI put a .txt file in resources folder in plugin I'm working on and I can't get a handle on it Txt file is in resources folder, using tool_window run configuration to test code, added .txt to resou... -
Edited Advance Live Template programmatically
AnsweredHi there,Which API can I use to move to the next live template variable within an editor? I'm looking to mimic the behavior for when someone presses "enter" when finished typing in those red boxes ... -
Created LookupElementBuilder
AnsweredI want to use LookupElementBuilder to build a LookupElement with a list of 5 hardcoded strings. What API would I use to then display this in the popup?(like a completion)? (Java language) -
Created Invoking a Live Template programmatically
AnsweredHi there,I am designing a plug-in and I need to invoke a live template from code. How would you do this programmatically? I already registered a custom action and I would like to invoke the live te...