freewind lee

- Total activity 27
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 10
-
-
freewind lee created a post, Is it possible to capture all the exceptions of my custom plugin, so I can sent it to a server
I'm writing an IDEA plugin, when my friends use it, it often throws all kind of exceptions and hard to reproduce it in my place.I'm thinking if I can capture all the exceptions in the IDEA, and sub... -
-
freewind lee created a post, Can't run plugin with Jdk1.6?
I'm writing an idea plugin, and was using an old version (several months ago) IDEA IC, and using JDK1.6 to compile and run, everything was well.Today, I cloned the [intellij-community](https://gith... -
-
freewind lee created a post, How to test an action?
I defined a very simple action: public class MyAction extends AnAction { @Override public void actionPerformed(AnActionEvent event) { new MyLoginDialog(event.getProject()).show(); ... -
freewind lee commented, -
-
freewind lee created a post, How to write a test for two opened IDEA?
I'm writing an IDEA plugin, which will allow two opened standalone IDEA to communicate with each other(they will send messages to a shared server socket, and redirect to another).But I'm not sure h... -
freewind lee created a post, How to get the memory content of a file?
I'm writing an IDEA plugin, which needs to get the content of a file when it's renamed.I just use event.getFile.contentsToByteArray()to get the content. For plain text files, which is working w...