Abhaydoshi7
- Total activity 95
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 9
- Subscriptions 34
-
Created Is there a way to programatically update a plugin or force update ?
AnsweredIs there a way to do any of the below programatically update the plugin in background (or) programatically restrict project opening unless plugin is updated manually (or) any workaround or hack to... -
Edited Is there a way to include all licenses from all the third party dependencies in the distribution zip generated using 'buildPlugin' gradle task ?
AnsweredHaving all the third party dependencies from maven like org.json as given below compile group: 'org.json', name: 'json', version: '20190722' I am using buildPlugin gradle task to generate a install... -
Created Is there a listener to listen when IDEA starts ?
AnsweredDo we have any listener that gives a callback for when the IDE starts? I found com.intellij.openapi.project.ProjectManagerListener that gives a callback for when the user opens project. -
Created Advice on running multiple parallel progress
AnsweredI'm cloning multiple repositories serially one after the other using Task.WithResult. And after all the repositories are cloned, I perform a few operations(like copy, move etc) on the repositories ... -
Created Is there a way to clone a particular branch on git ?
AnsweredCurrently I'm using GitCheckoutProvider.clone() which allows me to clone to a folder using a git url and then I switch to a particular branch. Is there a way to do clone directly to a branch like b... -
Created Is there any way to implement an Error reporter like we do for bundled plugins ?
AnsweredFor users of my plugin (custom plugin repository, not hosted on plugins.jetbrains.com) Is it possible to implement something similar like we have for Kotlin and send the stacktrace and other detail... -
Created Is there any ProcessHandler that works like the in-build terminal ?
I've been using KillableColoredProcessHandler.Silent for running a custom process using a custom RunConfiguration. But I randomly get this error from the application I'm trying to run. stty: /dev/... -
Created KotlinNullPointerException on opening project programatically
AnsweredI keep getting a lot of exceptions when I'm opening a project programatically. Also when the project opens the left side bar with files list won't load. It fails when I invoke this method ProjectMa... -
Edited How do we ask which window to open when I open a project programatically ?
AnsweredI'm currently using the below given method to get the project object based on folder location val projectManager = ProjectManager.getInstance()val project = projectManager.loadAndOpenProject(proje... -
Edited Is there a way to NOT automatically set "Build" before run in a custom run configuration ?
I've created a custom run configuration that doesn't require "Build" before run task as it's going to use only the JARs and none of the source code. Is it possible to configure to skip for this cus...