Abhaydoshi7
- Total activity 95
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 9
- Subscriptions 34
-
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... -
Created Where can I find the Module icon ?
AnsweredI've gone through the whole icons.jar, But I couldn't find the Java Module icon. Please help me out. -
Created Getting this warning, How should I handle it? override 'BaseOutputReader.Options.forMostlySilentProcess()'
AnsweredI'm using KillableColoredProcessHandler with GeneralCommandLine for running a process. I also see that readerOptions is overridden already in KillableColoredProcessHandler. But I still get this war... -
Created How do I provide a component for module settings ?
AnsweredI want to be able to provide these setting for custom module type. ModuleWizardStep only helps when I'm creating the module. -
Created How do I set an excluded folder that is not created yet for a Module ?
I'm unable to use this way, Because I'll get null for VirtualFile val moduleRootManager = ModuleRootManager.getInstance(module)val modifiableRootModel = moduleRootManager.modifiableModelval exclude... -
Created Is there a way to refresh the project libraries ?
AnsweredUsing a custom toolbar button, I am updating a JAR file that is already added to the project Libraries. When I run the toolbar action, the JAR file gets updated, but the updates are not reflected i... -
Edited How do I add icon to plugin published in custom repository and customise the plugin homepage link ?
AnsweredI've successfully setup a server with updatePlugins.xml It lists my plugin when we search for it. But doesn't show the icon. I've gone through the below given link completely, but I can nowhere fin... -
Created Is there a way to check if a given jdk version is installed and registered ?
AnsweredI'm trying to check if JDK version 1.8 is installed and is available in the project. I'm using the following snippet to get the list of jdk's installed. val projectJdkTable = ProjectJdkTable.getIn... -
Created Getting null for findFileByIoFile randomly
AnsweredI'm getting a KotlinNullPointerException in the return statement of the given code. Any idea what could be the reason? It happens randomly, and never happens when I have a debugging breakpoints in ... -
Created How can we use names from .properties file in plugin.xml
AnsweredI have created a properties file in my resources directory and I'm using in though out my plugin for all the dialogs and messages.Using a class that extends `com.intellij.AbstractBundle` for loadin...