John Murph

- Total activity 60
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 23
-
Created Should IDEA warn on empty if and while?
I have a coworker who spent some time tracking down a problem to finally realize the code had an empty if. Here is what I mean:Clearly the semicolon after the if was a mistake. At least, it's cle... -
Created How to add action to the editor tab popup?
When you right-click the editor tabs, you get a popup menu to close or navigate the tabs. I want to add an action here, but can't find the menu id or any action ids for this in the ActionManager.x... -
Created How to exclude all subdirs but one from the project path?
i have a directory structure like this:My project directory is a parent of Dir. I want SubA in my project path, but not SubB through SubD. This is easy enough, except that more subdirectories are... -
Created How can I make the "checkout file?" dialog come up when editing a read-only file?
I know there has to be a way, but I can't find it. What is the recommended way to handle read-only files with plugins that modify the contents? I've looked through several plugins from the Twiki,... -
Created Having trouble using PSI to insert javadoc comment
The company I work for has a very special javadoc comment style. So, I was trying to write a plugin to generate the shell of these comments. Basically, I find the PSIElement that I want to put th... -
Created Can plugins control code-folding?
I want to be able to fold some specific part of the code that currently isn't foldable. Is there someway to do this with a plugin? Using PSI maybe?