Abhaydoshi7
- 活动总数 95
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 9
- 订阅数 34
-
创建于 Is 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,... -
创建于 Is 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... -
已编辑于 Is 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... -
创建于 Is 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. -
创建于 Advice 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 ... -
创建于 Is 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... -
创建于 Is 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... -
创建于 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/... -
创建于 KotlinNullPointerException 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... -
已编辑于 How do we ask which window to open when I open a project programatically ?
已回答I'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...