Arina Efremova

- Total activity 1841
- Last activity
- Member since
- Following 0 users
- Followed by 4 users
- Votes 82
- Subscriptions 674
-
Created Dynamic class definition
AnsweredHi team,we are developing an application framework, where the business objects are defined in every project dynamically. The business object definition is saved in the database, but could also be e... -
Created KtStringTemplateExpression: Class Not Found
AnsweredI'm a plugin developer, I added kotlin plugin dependency in build.gradle (intellij { plugins.set("kotlin") }). Everything is ok inside development environment, the KtStringTemplateExpression is kno... -
Edited Kotlin UI DSL Components - marked unstable with @ApiStatus.Experimental & issues with combo box
AnsweredHello, I am trying to work with the Kotlin UI DSL Components and using the example source code in the UI DSL Showcase. When I use the exact syntax shown I get a warning message that states: 'panel... -
Edited Plugin with 2 Custom Language Supports
AnsweredBaseline: We wrote an Intellij Plugin with Custom Language Support, using file-extension ".asd". Using gradle as build tool, adding a "generateLexer" and "generateParser" task: Task: Extend the pl... -
Created How can my plugin change debugger configuration when I click the 'debug' button in IDEA?
AnsweredMy plugin wants to change VM paramater in debugger configuration when I click the 'debug' button. I used DebuggerManagerListener.sessionCreated(DebuggerSession session) to change debugger configura... -
Created HCL AppScan Plugin crashes with 2022.2 versions of JetBrains IDE's
AnsweredWith version 2022.2 of the IDE, our plugin (HCL AppScan 2.3) the IDE gets stuck/frozen at startup. After we analyzed and debugged, when trying to use ProgressManager.getInstance().runProcessWithPro... -
Created IntelliJ theme plugin fails to build (fatal error trying to buildSearchableOptions)
AnsweredAs a maintainer of the theme plugin Cute Pink Light Theme for IntelliJ, I want to build releases for updated IntelliJ versions without getting any compilation errors or run-time errors. Currently I... -
Created IDEA crashes when I use a plugin for generating code which calls a native Go library
AnsweredI developed a plugin dependence on a Go library (build in c-shared mode). It work fine in sandbox, but after installed, it crash the IDEA when I click the "生成" ("Generate") button. And the Native l... -
Created How to start an application in background IDEA via plugin
AnsweredI'm starting a Java application via plugin, if IDEA is running in background, the following lines: DumbService dumbService = DumbService.getInstance(project);dumbService.smartInvokeLater(() -> Sofa...