Godwin Joseph

- Total activity 42
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 11
-
Created JSON FileType not resolving new 2024.3 plugin
AnsweredAs per the new changes https://plugins.jetbrains.com/docs/intellij/api-changes-list-2024.html#json-plugin-new-20243 listed here, I have included the com.intellij.modules.json in plugin.xml. But i... -
Created How to handle Deprecated code when developing Plugin?
AnsweredHi How to properly handle Deprecated API when developing plugin? I have added version check to handle, but it failed when verification. In 2023 major version some of the previous API is schedul... -
Created How to hide/disable menu when the corresponding plugin is not used?
AnsweredHiI have written a plugin for generating KDoc for Kotlin files in IntelliJ IDEA. I have registered actions in plugin.xml. The actual problem is, this menu will show every NOT KOTLIN projects. I onl... -
Created invoking AndroidSdkUtil produce ClassNotFound Exception
AnsweredHi Invoking AndroidSdkUtils produces Crash. java.lang.NoClassDefFoundError: org/jetbrains/android/sdk/AndroidSdkUtilsat DebugComponent.initParser(DebugComponent.java:44)at DebugToolWindowFactory.cr... -
Created How to find ADB root path programatically?
I am developing a plugin for Android Studio. For that, I need adb support. If the development machine configured with ADb (setting environment variable), it is easy to execute commands. But the sys... -
Created How to find editor position with line number and offset?
Hi I have a string to parse. When the parser parses it, we will get the output and that was the error, line number and offset. I need to show an error popup on the editor with this insufficient det... -
Created Can't run Plugin in Mac OS
AnsweredHiI have developing an IntelliJ IDEA plugin But I can't run or debug. When run/ debug it is opening another IDE and prompt to select or open projects. After creating one java(tried java, kotlin, pl... -
Created How to add context menu item in Logcat and open by plugin with selected text?
Hi I am developing a format plugin that will format many languages. I created that toolbar component and If any text copied to my input Editor, it will format. The problem was, I want to get an ... -
Created How to enable TextFieldWithAutoCompletion Enter key press
Hi How to get the Enter key press on TextFieldWithAutoCompletion When I go through the class I found addKeyListener method. but it is not triggering. completion.addKeyListener(new KeyListener() { ... -
Created Autocomplete popup is not coming in TextFieldWithAutoCompletion
Hi I have a TextFieldWithAutoCompletion inflated on JPanel. And I have a collection of variants applied to TextFieldWithAutoCompletion, TextFieldWithAutoCompletion<String> completion = TextFieldWi...