Abhaydoshi7
- Total activity 95
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 9
- Subscriptions 34
-
Created Icon doesn't load on WelcomeScreen.QuickStart.Platform group
Answeredicons class package icons;import com.intellij.openapi.util.IconLoader;import javax.swing.*;public class ClassName { public static final Icon ICON_NAME = IconLoader.getIcon("/icons/icons-main.... -
Edited How do I execute ant target programatically ?
AnsweredI've gone through AntConfiguration and added an ant build file like below val antConfig = AntConfiguration.getInstance(project)val buildFile = antConfig.addBuildFile(localFileSystem.findFileByIoFi... -
Edited How do I make sure my custom before run task is always ran before the run/debug starts ?
I want a few generated classes to be copied to a specified folder before the main class is ran. I wanted this operation to happen without the plugin users having to configure anything. I've already... -
Created Can I ignore java.io.FileNotFoundException: /Users/XXX/YYY/.idea ?
AnsweredI randomly get this exception when I'm opening a project using my plugin. Should I just ignore this exception ? java.io.FileNotFoundException: /Users/XXX/YYY/.idea at com.intellij.openapi.util.io.F... -
Edited How do I update project settings using project object programatically ?
AnsweredI'll get an instance of Project object using the below code. val projectManager = ProjectManager.getInstance()val project = projectManager.loadAndOpenProject(homeDirectory.absolutePath) How do I up... -
Edited How do I get default/pre-installed Java SDK for setting as the project SDK programatically?
AnsweredIn short what do I pass for ProjectRootManager.getInstance(project).setProjectSdk(Sdk) -
Created How to create the default java module programatically ?
I've successfully created a project and opened it on the IntelliJ editor val projectManager = ProjectManager.getInstance()val project = projectManager.loadAndOpenProject("/Users/X/Work/TestProject... -
Created How do I validate fields in ModuleWizardStep/ModuleBuilder like we do in DialogWrapper ?
AnsweredI've been trying to make a wizard for creating a project using DialogWrapper until now, when I realised we can define a new ModuleBuilder. So I started changing my code to work with ModuleBuilder. ... -
Edited How do I clone git repo using plugin code.
AnsweredHi, I'm trying to develop a plugin where source code of a component of project can be automatically cloned and added as a separate module and a dependency to the core module. I have gone through th... -
Created Update icons on toolbar when menu option selected
AnsweredI am developing a plugin in which I'll have an action as menu option and the action on the toolbar. Like the debug icon in IntelliJ, I'd like to show a small green dot when it's active and remove t...