Scott Wells

- Total activity 178
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 44
-
Created Best way to detect and fix incorrect module type?
This is somewhat of a continuation of a previous question that I posted. Basically when users of my plugin create a new project or module from existing sources, in particular from VCS, the resulti... -
Created Copy/paste in JTables no longer works on Mac in IntelliJ IDEA 15
One of my plugin's users reported this to me. Basically I have a custom tool window that renders the results of a query into a JTable. Traditionally users have been able to copy the table cell co... -
Created Bulk vetoing file pre-delete listener?
I'm adding a new feature to my plugin that would optionally propagate file delete events to the server. I'd prefer to do this by adding a pre-delete listener that asks the user whether the deletes... -
Created Best way to add/remove errors for a directory in the Problems View?
My custom language plugin sends the source to a remote system for compilation. Warnings and errors are reported in response with information about the corresponding file, line/column numbers, warn... -
Created Custom module type and VCS-based project
Some of the users of my plugin are having issues creating a project from VCS (Git and SVN so far) and then using my plugin with the retrieved source files. The issue is that my plugin has a custom... -
Created Custom file status indicator?
Is there any way in the plugin SDK to add a custom file status indicator to the standard ones:https://www.jetbrains.com/idea/help/file-status-highlights.htmlI'd like to have my plugin show whether ... -
Created Any way to determine whether a save was an explicit user action or not?
My custom language plugin reacts to VirtualFileListener.contentsChanged() events to propagate saved files to an external system. There are many situations where the IDE saves files as a side-effec... -
Created Treat an archive (zip) as a read/write pseudo-directory?
Has anyone looked into what might be required to make the IDEA treat an archive under a source root as a pseudo-directory, i.e., allowing the archive to be browsed as if it were exploded into the f... -
Created Any way to give a data type for "inner" expressions in MultiplePsiFilesPerDocumentFileViewProvider?
I've asked this before but didn't get any traction, so I thought I'd check one more time. In my custom language plugin, I support an embedded markup language similar to JSP with expressions that c... -
Created Contextual syntax highlighting not based only on lexer
I'm trying to figure out how I can extend my syntax highlighter to provide contextual highlighting similar to the Java editor, e.g., different highlights for class variables vs. member variables vs...