freewind lee
- 活动总数 27
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 10
-
-
freewind lee 创建了一个帖子, 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 创建了一个帖子, 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 创建了一个帖子, 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 进行了评论, -
-
freewind lee 创建了一个帖子, 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 创建了一个帖子, 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...