Godwin Joseph
- 活动总数 42
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 3
- 订阅数 11
-
创建于 JSON FileType not resolving new 2024.3 plugin
已回答As 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... -
创建于 How to handle Deprecated code when developing Plugin?
已回答Hi 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... -
创建于 How to hide/disable menu when the corresponding plugin is not used?
已回答HiI 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... -
创建于 invoking AndroidSdkUtil produce ClassNotFound Exception
已回答Hi Invoking AndroidSdkUtils produces Crash. java.lang.NoClassDefFoundError: org/jetbrains/android/sdk/AndroidSdkUtilsat DebugComponent.initParser(DebugComponent.java:44)at DebugToolWindowFactory.cr... -
创建于 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... -
创建于 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... -
创建于 Can't run Plugin in Mac OS
已回答HiI 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... -
创建于 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 ... -
创建于 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() { ... -
创建于 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...