Fedor Belov
- Total activity 41
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 14
-
Created 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. ... -
Created 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... -
Created How can I programmatically open plugin's settings page?
Is it possible programmatically open plugin's settings page? -
Created 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 ... -
Created 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 ... -
Created 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... -
Created 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... -
Created 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'... -
Created 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... -
Created 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 ...