Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
167 views

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', ...
Surendra's user avatar
0 votes
1 answer
48 views

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 ...
yhu420's user avatar
  • 637
1 vote
1 answer
48 views

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 ...
Gunter's user avatar
  • 21
0 votes
0 answers
64 views

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 ...
prosody's user avatar
  • 704
0 votes
0 answers
68 views

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 ...
Healyhatman's user avatar
  • 1,680
0 votes
0 answers
48 views

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, ...
mike27's user avatar
  • 1,151
0 votes
0 answers
76 views

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 ...
Faust's user avatar
  • 111
0 votes
1 answer
130 views

When I switch out of the IntelliJ IDEA window and switch back, I have to wait for project folder to import again. If I am insider a file and working on something, it closes all of it out. On the ...
jhaywoo8's user avatar
  • 767
0 votes
1 answer
69 views

I've seen a lot of help directing people to search for "Add Framework Support" in the action search, but how do you enable it once you know the problem is that its disabled? End goal is to ...
benji's user avatar
  • 9
0 votes
0 answers
39 views

I'm encountering an error in my Gradle script where the plugins block throws the following error: plugins block cannot be applied to (java.io.Serializable & java.lang.Comparable>). Here is the ...
Anusree lakshmi's user avatar
0 votes
0 answers
45 views

I am writing a Plugin for IntelliJ and am currently trying to implement rename Refactoring. The problem is, that when I give PsiPolyVariantReferenceBase the absolute TextRange of my element, it fails ...
isi_ko's user avatar
  • 519
-1 votes
1 answer
43 views

This page: https://plugins.jetbrains.com/docs/intellij/tree-structure-view.html shows how to modify the project view structure. How do I modify the other view structures? (Packages, Project Files, ...
Johan Walter's user avatar
0 votes
0 answers
89 views

I develop Intellij idea plugin. Currently I'm migrating to Intellij platform gradle plugin 2.*. The problem is I cannot use local IDE instance to launch plugin. Once I do so (by switching from "...
Eugene Chumak's user avatar
0 votes
0 answers
117 views

I am trying to create a New Project Template in IntelliJ IDEA CE for Android Studio. I have started the project based on the this link https://github.com/JetBrains/intellij-platform-plugin-template. I ...
Russell Sjoblom's user avatar
0 votes
1 answer
33 views

I’m attempting to copy a global maven library to the project level, using the IntelliJ plug-in API. I tried following the steps at “Creating a Library” at https://plugins.jetbrains.com/docs/intellij/...
Jesse Barnum's user avatar
  • 6,936
4 votes
1 answer
281 views

The question is about plugin development using Kotlin UI DSL (https://plugins.jetbrains.com/docs/intellij/kotlin-ui-dsl-version-2.html) For example, I have panel panel { list.forEach { item -> ...
varan's user avatar
  • 354
0 votes
1 answer
65 views

I am trying to develop an idea plugin using the intellij-platform-plugin-template I want to implement the navigation from JavaScript function parameters to Java method definitions When I tried to run ...
zheng xu's user avatar
2 votes
3 answers
1k views

I am getting below error while adding the Google Account in Android Studio I have try the below methods still having same issue Changing the Browser Clearing the Cache of both browser and IDE ...
Muhammad Younas's user avatar
-1 votes
1 answer
49 views

Sometimes I commit wrong comments, accidentally or otherwise. I want an option where this could not happen in one step, but I get a pop-up confirmation to revise my message. In IntelliJ is there an ...
Noble String's user avatar
0 votes
1 answer
49 views

Is it possible to enable eslint autofix in Intellij from .editorconfig instead of manual configuration? Manual Config Intellij: I am looking for something like this: [*.{js,jsx,ts,tsx,json}] ...
Thomas's user avatar
  • 1,170
0 votes
1 answer
158 views

The class HttpConfigurable has been deprecated at version 2024.2, when I use HttpConfigurable.getInstance() to get proxy data such as host, login name, it will warn: 'com. intellij. util. net. ...
Jnope's user avatar
  • 3
2 votes
0 answers
207 views

When debugging our Kotlin code while running a test, hitting a breakpoint shows some values get optimized out if they are not called further down in the scope. While ideal for complied code, this is a ...
kmfsousa's user avatar
  • 233
0 votes
0 answers
255 views

I have a maven + kotlin + spring boot project. project>properties>kotlin.version is 2.0.20. I have data classes with private constrcutors. I add this <arg>-Xconsistent-data-class-copy-...
Damian Kapłon's user avatar
1 vote
1 answer
46 views

Is it possible to create an android studio plugin that adds your own custom samples to the list of downloadable samples provided by android studio? So far, I have only seen plugins with actions and ...
Njuacha Hubert's user avatar
0 votes
1 answer
67 views

I am writing JB IDE plugin (idea, webstorm etc) Inside of the plugin I am using ProcessBuilder to invoke npx command val builder = ProcessBuilder("npx jest /src/some.test.js").directory(...
D.Strizhkov's user avatar

1
2 3 4 5
28