Brian Faris
- Total activity 75
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 30
-
Created Default Java LiveTemplates Location
AnsweredHi there,I need the file location for the default Java.xml live templates that is bundled with IntelliJ releases (2020.2 is fine).Thank you, -
Edited IntelliJ Platform Version for Building
AnsweredI have a version of my plugin targeting all builds in the 193 branch of the IntelliJ Community & Ultimate IDE. The plugin is built with intellij { updateSinceUntilBuild false plugins = ['jav... -
Edited InsertHandler not working
for (PsiPackage psiPackage: allPackages) { lookupElements.add(LookupElementBuilder.createWithIcon(psiPackage).withIcon(psiPackage.getIcon(1)).withInsertHandler(new InsertHandler<LookupElement>()... -
Edited Brew Java Plugin
Brew Java is a plugin designed to make programming easier by moving a lot of the work to the mouse. It features single click code completion, the ability to generate fields/methods with live templa... -
Created IdeFocusManager editor problem
Code that my ToolWindow uses to throw focus back to the Editor is: IdeFocusManager.getInstance(project).requestFocusInProject(editor.getContentComponent(), project); The problem is that once this ... -
Created Funny completion list click behavior
AnsweredHi,I'd like to make it possible so I can select items on the completion list with one mouse click instead of 2. In the key map settings, it is possible to set "Choose Lookup item" to "ButtonClick... -
Created Completion list APIs
Hi there, I'm developing a plug-in for the IntelliJ IDE that will need to make use of some completion list APIs. I'm just looking for a little bit of guidance around the subject, so I just have a ...