Abhaydoshi7
- Total activity 95
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 9
- Subscriptions 34
-
Abhaydoshi7 created a post, AnsweredIs there any listener or scheduler like implementation that runs atleast once everyday ?
I want to run a few operations once everyday. At first I thought of implementing using the listener that runs everytime a project opens, but I noticed, that my plugin users don't close the project,... -
-
Abhaydoshi7 created a post, AnsweredIs there a way to programatically update a plugin or force update ?
Is 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... -
Abhaydoshi7 created a post, AnsweredIs there a way to include all licenses from all the third party dependencies in the distribution zip generated using 'buildPlugin' gradle task ?
Having 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... -
Abhaydoshi7 created a post, AnsweredIs there a listener to listen when IDEA starts ?
Do 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. -
Abhaydoshi7 created a post, AnsweredAdvice on running multiple parallel progress
I'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 ... -
Abhaydoshi7 created a post, AnsweredIs there a way to clone a particular branch on git ?
Currently 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... -
Abhaydoshi7 created a post, AnsweredIs there any way to implement an Error reporter like we do for bundled plugins ?
For 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... -
Abhaydoshi7 created a post, 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/... -
Abhaydoshi7 created a post, AnsweredKotlinNullPointerException on opening project programatically
I 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...