Brandon Fergerson
- 活动总数 85
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 7
- 订阅数 21
-
已编辑于 Programmatically auto import suggested imports
已回答I'm aware you can use JavaCodeStyleManager.shortenClassReferences() to automatically add imports for code that is fully qualified, but how would you do something similar with code that is not fully... -
创建于 Using "any" language with LanguageExtensionPoint
已回答There exists a Language.ANY, which I take to be a wildcard language, but it does not appear any of the extensions using LanguageExtensionPoint treat it as a wildcard. Is there a way to make those e... -
已编辑于 Get PSI reference in standalone parser
已回答I'm trying to get references for a method using a standalone PSI parser. The following code gets close but results in an NPE: import com.intellij.core.JavaCoreApplicationEnvironmentimport com.inte... -
已编辑于 Standalone UAST parser
已回答I'm using the following code to create a standalone UAST parser: https://github.com/bfergerson/standalone-uast I'm able to get UFile & UClass objects from Java files but only UFile objects from Kot... -
已编辑于 Disable SimpleTreeStructure auto-expand with single child
已回答How do I disable auto-expand in SimpleTreeStructure when there is only a single child element? I'm trying to display a recursive object and this auto-expand functionality is opening an infinite cha... -
创建于 Dynamic plugin using ProjectManagerListener
已回答My plugin is using ProjectManagerListener and it works correctly when the IDE starts but it's not called when the plugin is installed while the IDE is active. I'm not seeing anything about this lis... -
已编辑于 Add inspections/dependencies to file outside src
已回答I'm trying to create a self-contained single file application to serve as a way of extending my plugin's functionality with custom code. The idea being my plugin will look for these files in a dire... -
创建于 Remove inlay created through InlayHintsSink
已回答I'm extending InlayHintsProvider and adding inlay hints through InlayHintsSink, but I don't see how to remove those inlays once they're added. Using InlayModel I get an instance of Inlay which I co...