Scott McKinney

- Total activity 97
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 27
-
Created Annotator for all languages
AnsweredI'd like is to register my annotator normally in plugin.xml: <annotator language="" implementationClass="my.Annotator"/> Where the empty string indicates my annotator should be invoked for all lang... -
Created Methods added via PsiAugmentProvider do not infer references to the containing class' type variable .
Methods added via PsiAugmentProvider do not infer references to the containing class' type variable . For example, I am using PsiAugmentProvider to add the following methods to java.util.List: publ... -
Edited Type placeholder?
Is there an extension to implement that provides the ability to process local variable declaration Psi and change the variable's underlying type reference, but without changing the text in the docu... -
Created Java compiler plugin?
I'm developing the Gosu language IntelliJ plugin. There is a new feature in development where Gosu can fully interoperate with Java i.e., Java can extend, implement, and use Gosu types. Part of t... -
Created PsiElementFinder question
Is there a way to invalidate or refresh a virtual PsiClass instance my PsiElementFinder implementation returns from PsiElementFinder#getClasses()? Basically, it seems when the file associated with... -
Created Hook into IJ's HotSwap?
Is it possible to hook into IJ's hotswap of reloading changed classes? Our language plugin needs to know when modified Java classes have been recompiled/redefined so it can make an additional noti... -
Created The new View Breakpoints dialog in version 12
One word for the revision of the View Breakpoints dialog in IJ 12: Wha?My gosh, I've been using it for a couple of weeks now and I still have usability problems with it. The short list:- Adding/r... -
Created Perform static analysis/inspections out of process
In IntelliJ 12 we have an option for out of process compilation, which great. I'm wondering if there are similar plans to perform analysis i.e., run Inspect Code and the like, out of process? As ... -
Created Supress changes in Structure view?
I'd like to prevent the Structure view from updating while changes are being made to the corresponding class (of our custom language) in the editor. Is there a clearcut way to do that? Thanks. -
Created Best way to force PsiFile to reparse contents?
For performance reasons our language plugin creates a lighter weight, transient psi tree in response to direct modifications in the active editor. This lighter weight psi tree is not suitable for o...