Abhaydoshi7
- 活动总数 95
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 9
- 订阅数 34
-
创建于 Where can I find the Module icon ?
已回答I've gone through the whole icons.jar, But I couldn't find the Java Module icon. Please help me out. -
创建于 Getting this warning, How should I handle it? override 'BaseOutputReader.Options.forMostlySilentProcess()'
已回答I'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... -
创建于 How do I provide a component for module settings ?
已回答I want to be able to provide these setting for custom module type. ModuleWizardStep only helps when I'm creating the module. -
创建于 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... -
创建于 Is there a way to refresh the project libraries ?
已回答Using 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... -
已编辑于 How do I add icon to plugin published in custom repository and customise the plugin homepage link ?
已回答I'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... -
创建于 Is there a way to check if a given jdk version is installed and registered ?
已回答I'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... -
创建于 Getting null for findFileByIoFile randomly
已回答I'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 ... -
创建于 How can we use names from .properties file in plugin.xml
已回答I 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... -
创建于 How do I add a library to project, and reuse them in all the required modules ?
已回答I'm having multiple modules and I'm adding the library to a module using the below given snippet to each module one by one. val localFileSystem = LocalFileSystem.getInstance()val moduleRootManager...