Omayevskiy

- Total activity 72
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 21
-
Created Download statistics for Android Studio not working
The plugin download statistics for Android Studio seems not to work. Are there any known issues?Plugin page -> view download statistics -> downloads by products -> Android Studio is not listedYes, ... -
Created Show Jacoco coverage data
using IDEA Ultimate 13.1.6Given the project:https://github.com/DeziderMesko/RobotframeworkCodeCoverageand running:$ mvn clean installthis generates:target/javoco.exectarget/site/jacoco/If I open th... -
Created Is it possible to add inspection classes dynamically?
Hello,assuming registering inspections like:public class MynspectionToolProvider implements InspectionToolProvider { @Override public Class[] getInspectionClasses() { Collection<Class>... -
Created How to update status of ProgressIndicator from within GlobalInspectionContextExtension
I have source code like:public class MyInspectionContext implements GlobalInspectionContextExtension< MyInspectionContext > { @Override public void performPreRunActivities(...) { ... -
Created How to run a Backgroundable Task in progress and synchronously?
Hello,what I am trying to achieve:Run multiple tasks in a background threads, but synchronously with order each after the other.I have tried to search the forum for the answer, but still have an op... -
Created Plugin development for multiple Jetbrains products
Hello,I am developing an open and free plugin for all Intellij, but this plugin should also work for smaller products like webstorm and phpstorm.I have an Ultimate licence and develop currently aga... -
Created Incorrect "Incompatible return type Object in lambda expression"
Using Intellij 13.1.4 and Java 8Given the source code:package my.foobar;import java.util.concurrent.ConcurrentMap;import java.util.stream.Collectors;import com.google.common.collect.ImmutableList;i... -
Created Persist ModuleComponent in a user defined file?
Hello,my persistent ModuleComponent looks like:@State( name = "moduleSettings", storages = { @Storage(id = "default", file = "$MODULE_FILE$") // btw. why is MODULE_FILE missing in Stor... -
Created How to add description to Annotator?
Hello,if implementing a LocalInspectionTool I can use getStaticDescription. This way I can press (Ctrl+F1) and see a more extended explanation of the hint in the editor.public class MyLocalInspecti... -
Created Why is PsiTreeChangeAdapter#beforeChildrenChange fired after BulkFileListener#after ?
Hello,I have two listeners in my plugin:public class FileSaveListener implements ApplicationComponent, BulkFileListener { @Override /** * Executes after file(s) are saved to the disc. No...