freewind lee
- 活动总数 27
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 10
-
创建于 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... -
创建于 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... -
创建于 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(); ... -
创建于 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... -
创建于 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... -
创建于 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: ... -
创建于 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... -
创建于 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... -
创建于 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. -
创建于 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?...