Scott Wells

- Total activity 178
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 44
-
Created Reference to a named element using a different name?
I'm trying to create a reference to a named element using a different name, in this case, basically a property-style name ("foo") referencing a getter-style method ("getFoo()"). The reference work... -
Created Embedded source editor for expression from custom language?
I need to be able to show an embedded instance of the source editor for an ad hoc expression from my custom language. This is very similar to the Evaluate Expression window from the Java debugger,... -
Created Denoting "modified" in a SettingsEditor?
As I mentioned in a separate post the other day, I'm adding unit test support to my custom language plugin. I've implemented a ModuleBasedConfiguration and a SettingsEditor for it. I'm able to cr... -
Created Code coverage for custom language
The system for my custom language plugin provides its own unit testing framework and code coverage metrics. I'd like to integrate both of these into IDEA in a first-class manner. The unit testing... -
Created Case-insensitive XSD attribute validation?
In my custom language plugin I've registered an xml.fileNSInfoProvider implementation that returns a set of XSDs for my plugin's composite markup. This provides both attribute completion and valid... -
Created Add plugin with different zips for different versions of IDEA to plugin repo?
I'm finally ready to add my custom language plugin for Salesforce.com development to the plugin repository but have hit a snag. For better or worse, to support three major versions of IDEA--12, 13... -
Created Rebuilding a set of file-based indices on-demand
My custom language plugin has a set of file-based indices including two stub indices, and the order in which they're built is important as some leverage others as they're populated. I've expressed... -
Created Folder comparison that supports internal/external tool in IDEA 12/13?
In IDEA 14 I can easily launch a folder comparison that will use the configured external diff tool if present and the internal diff tool if not by calling com.intellij.diff.DiffManager.getInstance(... -
Created Validation for modified project settings step in next project/module wizard?
I've just added a new module type to my custom language plugin and, as part of that work, I'm modifying the project/module creation wizards. I have this working quite well except for one thing (ac... -
Created Expression types of embedded language in MultiplePsiFilesPerDocumentFileViewProvider?
Okay, another question about MultiplePsiFilesPerDocumentFileViewProvider. As I've mentioned in previous posts here, my custom language plugin supports JSP-style templating markup where custom tags...