freewind lee
- Total activity 27
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 10
-
Created 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... -
Created 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... -
Created 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(); ... -
Created 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... -
Created 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... -
Created How to focus on a textfield when a dialog is opened?
I have a "ConnectServerDialog" which contains a "textfield", I want the textfield to be focused when the dialog is shown. class ConnectServerDialog extends DialogWrapper { } I tried to invoke: ... -
Created How to modify the document without publishing events?
I'm trying to write an idea plugin for remote pairing programming, and have some problems.I created a socket server, the plugins on different idea can connect to it and send/get messages from it. W... -
Created New dialog has no size
I created a dialog:public class SearchDialog extends JDialog { public SearchDialog() { setTitle("Find jars"); }}Then, I created a new dialog in an action:class DialogAction extends An... -
Created How to create a "directory selection" dialog?
I want to create a "directory selection" dialog to let users select a directory, which class should I use? I just spent several hours to find it, but not found. -
Created I have some problems when I create my first idea plugin
I'm new to idea from eclipse. I want to create an idea plugin to convert some haml-like files into html files. I built one on eclipse, but I don't know how to do it in idea.What the plugin will do?...