Fedor Belov
- 活动总数 41
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 14
-
创建于 Strange popup on creating files outside of plugin's directory (WebStorm 9)
Hello. Similar to scratch plugin - https://github.com/dkandalov/scratch - I create files in PATH_TO_IDEA_CONFIGS/config/plugins/my_plugin/ directory. It was ok. I tested my plugin with Webstorm 9. ... -
创建于 How can I track plugin's exceptions?
I wanna get info about plugin's exceptions. What's the best way to implement it? Do you have any kind of such api?Pretty similar question: can I use log4 or logback? Can I use external appenders (l... -
创建于 How can I programmatically open plugin's settings page?
Is it possible programmatically open plugin's settings page? -
创建于 Is it possible to display notification when popup is displayed?
I'm trying to display notification when popup is display - it doesn't work. It displays only in event log. I found pretty similar thread - http://devnet.jetbrains.com/message/5512013#5512013 - but ... -
创建于 Is it possible to specify default editor?
Hello. I use `OpenFileDescriptor(project, file).navigate(true);` to open my file in editor. If file extension is unknown then IDEA ask which editor to use. Is it possible to specify default editor ... -
创建于 Is it possible to change VirtualFile content from Task.Backgroundable action?
I'm getting an exception `Access is allowed from event dispatch thread only.` when I try to change VirtualFile content from background task. Is it possible to change VirtualFile content from backgr... -
创建于 Pls suggest good UI guide
Hi. My main problem in plugin development is UI - I'm not familiar with Swing and etc. My task is really simple - popup with input field and suggestions based on data in input field. I checked IDEA... -
创建于 How can I provide UI to change plugin's settings
To store settings I should use PersistentStateComponent object. But how user can change these settings?Suppose I've got two input fields and few checkboxes. What's the best way to implement plugin'... -
创建于 Where can I store custom plugin's files?
I wanna implement following plugin:1. User can create virtual file with any name/dimension (IDEA should use correct editor by file dimension)2. It should be saved somewhere3. User can open this fil... -
创建于 How can I create plugin with similar to "ctrl-shift-n" dialog?
I wanna implement plugin which will display dialog similar to "ctrl-shift-n" dialog:1. Input field2. Suggestions based on input3. Do action on suggested item clickIs it possible to implement? Can ...