1,376 questions
2
votes
1
answer
280
views
Why isn't Windsurf's autocomplete working in my IntelliJ IDEA 2024?
Just installed Windsurf in IDEA 2024 and enabled autocomplete. The Chat agent works fine (I'm in China, so probably not a full network block).
But inline suggestions aren't appearing at all. Example: ...
1
vote
1
answer
267
views
Kotlin Multiplatform Plugin not working properly
Kotlin Multiplatform for IntelliJ Idea (Community) Linux and Windows released. Version: 0.9-252.26199-IJ_CE-176. I have installed the plugin and restart the ide it says
Plugins 'Kotlin Multiplatform', ...
0
votes
0
answers
35
views
How to extract structured unit test data in IntelliJ Plugin?
I'm working on an IntelliJ plugin that exposes IDE functionality through a Model Context Protocol (MCP) server. The core idea is to create an MCP server within an IntelliJ plugin that can execute ...
0
votes
1
answer
61
views
Run development IntelliJ plugin in something else than IntelliJ Community
I want to create a plugin for WebStorm or PhpStorm.
I started by using the template by JetBrains, and my plugin works well when I click "Run plugin", as it launches in a development IntelliJ ...
0
votes
0
answers
22
views
Android Emulator in IntelliJ - how can I set background to white?
I've installed the Android Emulator in IntelliJ. In IntelliJ, I've also set Settings > Appearance & Behavior > Appearance > Theme to "Light". I've also set the emulator theme to ...
1
vote
1
answer
56
views
Spring Boot app works in Docker CLI/Desktop but not when run inside IntelliJ – not accepting requests [closed]
I'm working on a Spring Boot application that runs fine when I:
Run it directly (without Docker)
Dockerize it and run it via Docker CLI: docker run -p 8080:8080 my-app
Run it through Docker Desktop
...
0
votes
1
answer
103
views
Is it possible in IntelliJ IDEA to navigate between GraphQL schema and the controller methods?
I have a Java/Kotlin Spring Boot project with GraphQL API.
I would like to navigate between the schema file and the @QueryMapping and @MutationMapping in the @Controller implementation of the schema.
...
0
votes
0
answers
74
views
IntelliJ plugin - Package 'com.redhat' is not found
My IntelliJ platform plugin won't verify because it can't find Red Hat lsp4ij dependency (or actually the whole Red Hat org).
Project repo
Support request on JetBrains
Possible related issue
...
1
vote
1
answer
38
views
Do Intellij platform SDK and Kotlin compiler embeded conflict? Is there a workabround?
I’m developing a platform plugin and I would like to include ktfmt jar (v0.54). I also think ktfmt uses org.jetbrains.kotlin:kotlin-compiler-embeddable which I believe is causing this issue. Anyway I ...
0
votes
0
answers
88
views
Custom Add Source plugin for DataGrip
I have a CLI tool that fetches database details for tenants and I want to make it easier to import those into DataGrip. The tool returns a JSON response with all the details I need.
What I want to ...
1
vote
1
answer
149
views
What is needed to get a simple instance of JBCefBrowser up and running to execute JavaScript?
I'm working on making a possible contribution the Community Edition of Intellij IDEA, adding some enhancements to the Markdown preview feature.
The IDEA code base is primarily Java and Java's cousin, ...
0
votes
0
answers
54
views
Execute an action with parameters with IntelliJ IDEA IdeaVim
I have a mapping like this defined in the .ideavimrc file:
map <c-t> <Action>(ActivateTerminalToolWindow)
It activates the terminal window.
Is it possible to add a string parameter to it, ...
0
votes
0
answers
56
views
Extracting Local History of a File via IntelliJ Plugin?
I'm currently working on a project trying to extract the Local History of an IntelliJ Project with a Plugin, but I can't seem to really find a way of doing it, is there even a way?
I've tried using ...
0
votes
0
answers
81
views
Add a process completion callback in the terminal
When developing a plugin on intellij, how can I add a callback to complete a command in the terminal launched via sendCommandToExecute for TerminalWidget?
I've tried using addTerminationCallback, but ...
0
votes
0
answers
70
views
Control-Q in IntelliJ doesn't show enough method info
According to the documentation, pressing CTRL-Q over a method-call should show a full rundown on what a method does.
This image from a tutorial that I'm watching shows information including method ...