Arina Efremova
- Total activity 2731
- Last activity
- Member since
- Following 0 users
- Followed by 5 users
- Votes 104
- Subscriptions 980
-
Created How do you classify/tag plugins that install new project wizard or templates, so that they can be found via '/tag:' in in-IDE Plugins search?
AnsweredThese keywords don't seem to work: wizard, template, project, starter -
Created Callback URL
AnsweredI'm developing a plugin for jetbrains and I need a way to redirect back to the text editor (I'm testing on intelliJ). Is it possible to achieve this without an external server? What would the callb... -
Edited Unresolved reference when running gradle:runIde
AnsweredHello friends,I'm attempting to create an IDE plugin to no avail. The documentation was of no help, and googling IntelliJ plugin development issues brings up results from 2004.- I've created the gi... -
Created Is there an easier way to make a Commenter without having to create a Parser/PSI?
AnsweredI'm trying to develop a language plugin with the new LSP API but having to create the grammar just to be able to comment kinda defeats the purpose. -
Created What is the suggested pattern for implementing a plugin that runs an external command that generates inspections?
AnsweredI have seen several plugins that run an external command (pylint/mypy/ruff etc) to generate inspections in the editor. All of these plugins have struggled with asyncronously running the command an... -
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...