Fedor Belov
- Total activity 41
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 14
-
Created How to move cursor to the end of the file?
HelloI open file by `new OpenFileDescriptor(project, file).navigate(true);`. When the file is opened cursor is placed at the beginning of the file. How to move it to the end of the file? -
Created How to upload different plugin versions for different SDK versions?
Since Jetbrains changed API in latest version I need to upload two versions of my plugin:v1 for old IDEs (IDEA 13)v2 for new IDEs (IDEA 14)How can I do it? -
Created Can I use Guava in my plugin?
Hello. I installed my plugin as zip and got an exception:Exception on tracking com.google.common.io.Closeables.closeQuietly(Ljava/io/InputStream;)V exception: com.google.common.io.Closeables.closeQ... -
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...