Hayk Hovhannisyan

- Total activity 20
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 5
-
Created Building plugin through the Gradle Workflow
AnsweredDear all, I am developing background plugin for IDEA 2019.2. Following the documentation Building plugins with Gradle. Also as a reference using the examples of plugins. When I am ruining runIde ta... -
Edited Error in buildPlugin execution time
AnsweredDears, added log which I see after running buildPlugin gradle task. Please check and confirm that this is the same what have opened as a bug here: https://youtrack.jetbrains.com/issue/IDEA-219599 ... -
Created The best way to refresh Virtual FIles
AnsweredHi Dears, before I used for refreshing: Objects.requireNonNull(project.getProjectFile()).refresh(false, true); now changed to: VfsUtil.markDirtyAndRefresh(true, true, true, project.getProjectFile()... -
Edited What is the best way to take dependency library in Plugin
AnsweredDear all I am developing idea plugin based on Gradle workflow. Have compile time dependency from other libraries in my built.gradle. Want to take that jar file run time and get from there some prop... -
Edited What is the best way for callback when some file changed
AnsweredDear all please tell me the best way to handle (callback), when some file changed in project. My current usage like this: public void activateListeners(Project project) { // Project Message Bus ...