44,059 questions
0
votes
0
answers
35
views
Kotlin destructuring declaration from a run block -- compiler error, or my error? [closed]
In the example below, if I try to turn val x into val (x,y) IDE complains vigorously.
If I try to make the return an explicit pair for the val (p,q) assignment it get the same errors.
I do not ...
0
votes
0
answers
48
views
Java project dependency jar - only part of new code being recognized
I have a Java service that relies on a dependency jar that I have modified. Within the dependency I have updated 2 different sections of code for unrelated functionality. I have updated the version of ...
-5
votes
1
answer
67
views
How to change IntelliJ terminal font colors [closed]
Terminal screenshot
I am using the default IntelliJ theme, but inside the terminal, the colors of the font I type and the response I get are a white pale yellow color, which is often hard to read.
I ...
Tooling
0
votes
0
replies
24
views
Accessing coverage report as a database
I'm working on a large java project and want to analyse the coverage of the Database-layer in the System. For that purpose, I'm generating a code coverage Report with Intellij. It allows me to see the ...
0
votes
1
answer
64
views
IntelliJ IDEA doesn't see type from .m2 jar
A Maven dependency is loaded, expected types are present in the jar in .m2, yet IntelliJ paints the import in red.
I tried deleting the dependency directory and loading it again, it didn't help.
<?...
-1
votes
0
answers
69
views
Is it possible to link/run Gradle tasks in comments in IntelliJ Idea? [closed]
I am using IntelliJ Idea with Gradle. Take for example:
/**
* Make sure to run the runData configuration before starting the client
*/
could runData there be substituted for something clickable/...
-1
votes
0
answers
38
views
Errors launching Spring Boot application with application configuration
I'm working on a Spring Boot application using IntelliJ IDEA. I can run the application locally with a Maven run configuration using the goal spring-boot:run, and it works as expected, I have also ...
-3
votes
0
answers
57
views
How to run a Spring Boot application in IntelliJ with debugging enabled? [closed]
I'm working on a Spring Boot application using IntelliJ IDEA. I can run the application locally with a Maven run configuration using the goal spring-boot:run, and it works as expected.
However, this ...
0
votes
1
answer
112
views
Parameter Info popup is extremely small and can’t be resized on macOS
I have an issue regarding the popup window size.
When I press View Parameter Info (⌘P) in PhpStorm, the popup window that shows the function parameters is extremely small. Its height is about 20–30px, ...
0
votes
1
answer
72
views
Gluon plugin IntelliJ 2025.1+ dependency on com.intellij.javafx
With this announcement: https://platform.jetbrains.com/t/javafx-runtime-for-plugins-is-deprecated-in-2025-1/944
It is obvious why this is not working. However, I have not been able to find a ...
1
vote
1
answer
47
views
Is there a way to review PR's (GitHub) within IntelliJ IDEA
Using IntelliJ IDEA 2025.2.4. Our repos are private in a GitHub organization. I want to review the PR's within IntelliJ IDEA. I know it's possible via the native GitHub plugin of JetBrains. But ...
Tooling
1
vote
2
replies
46
views
PyCharm doesn't highlight problem files/directories in the files tree
I'm just amazed, but is there really no function for highlighting directories and files with problematic code?
The thing is, in one of my projects, I used JS in PyCharm, and there is a linter called ...
-1
votes
0
answers
108
views
Need help compiling a JavaFx project [duplicate]
Created a JavaFX app using Java 21 and copied this tutorial to build my project
https://www.youtube.com/watch?v=udigo_qSp_k
I then created my project, and everything ran fine in an IDE. When trying to ...
0
votes
1
answer
40
views
DBMS_SQL.RETURN_RESULT specifically in IntelliJ's Query Console
I'm trying to replicate this kind of SQLPlus code specifically in IntelliJ's Query Console connected to an Oracle DB:
-- this syntax not available in IntelliJ's Query console.
variable rc refcursor;
...
0
votes
0
answers
63
views
IntelliJ IDEA hides method chain inlay hints when followed by comment
I work for a fairly large company that unfortunately has an unchangeable company policy of enforcing line breaks in method chains only via line comments due to the mandated formatter.
So our chains ...