Questions tagged [jetbrains-ide]

For programming problems relating to using any of the JetBrains tools such as ReSharper, RubyMine, etc. If the issue is related to JetBrains Toolbox, please use the [jetbrains-toolbox] tag instead. General computing questions about using the IDE would be better suited for Super User.

For general issues relating to using any of the JetBrains tools such as ReSharper, RubyMine, etc.

Note: the JetBrains IDE platform shares a lot of common functionality between tools; if you believe you have a tool-specific issue, you should elect to use that tag instead. Some of the tools listed are , , , , , , and .


Tag renamed after a discussion - Should we burninate the [jetbrains] tag?

2557 questions
101
votes
1 answer

Choose position of cursor after a live template

In IntelliJ IDEA, I have defined a live template like this: @Inject private void postInject() { //I want the cursor to be placed here after the execution of the live template. } Is there a way to tell IntelliJ to place the cursor inside of the…
Arnaud Denoyelle
  • 29,980
  • 16
  • 92
  • 148
96
votes
23 answers

GoLand (JetBrains) shows error message "Unresolved Reference". But Code compiles and runs

I am writing a project using the Go language with GoLand IDE by Jetbrains. While writing the code, GoLand shows me an error message such as "unresolved reference" when the reference do exist and that the program compiles and runs correctly. Here is…
David
  • 971
  • 1
  • 5
  • 4
91
votes
10 answers

ERROR Source option 1.5 is no longer supported. Use 1.6 or later

It all happens when I was trying to build a springboot application by ./mvnw clean install When I first run the install command, it runs into following problem. [INFO] ------------------------------------------------------------------------ [INFO]…
90
votes
7 answers

How to remove unnecessary blank line on code formatting in IntelliJ?

Is it possible to remove empty/blank lines using code formatting in Intellij IDEA?
Eugene
  • 59,186
  • 91
  • 226
  • 333
87
votes
9 answers

How to Turn off automatic saving on web storm

I am developing with meteor and Webstorm, being that meteor automatically updates the browser and Webstorm saves after you stop typing. It gets annoying. I checked my preferences and I can see that I have 'save automatically' unchecked. How do I…
Warz
  • 7,386
  • 14
  • 68
  • 120
84
votes
18 answers

IntelliJ: Error: java: release version 10 not supported

In IntelliJ, I'm getting this strange error message when I try to build from the build menu Error: java: release version 10 not supported I don't understand this, since in Project Structure, I have these settings set: Project SDK: 9.0 Project…
MiguelMunoz
  • 4,548
  • 3
  • 34
  • 51
78
votes
1 answer

What is the difference between "Revert Commit" and "Undo Commit" in IntelliJ IDEA?

In IntelliJ Ultimate IDEA 2019.3 (not sure when it was introduced) we have "Revert Commit" and "Undo Commit" options in the Version Control -> Log Tab. What is the difference between those two options?
Marian Klühspies
  • 15,824
  • 16
  • 93
  • 136
76
votes
4 answers

What does the A stand for in Intellij IDEA?

Does anyone know what the acronym IDEA stand for? I would assume Integrated Development Environment, then maybe Application? Also does Intellij stand for anything?
Chris Watts
  • 2,284
  • 4
  • 23
  • 28
68
votes
11 answers

How to use WSL as default terminal in WebStorm or any other JetBrains' products?

I am currently using Windows 10 with WSL Ubuntu 18.04 installed. I am trying to use WSL as the default terminal in WebStorm however, I am able to use the bash from WSL but the default directory would not be set to the default project location. Does…
forkadam
  • 2,372
  • 2
  • 9
  • 17
68
votes
3 answers

JetBrains' @Contract annotation

How does the org.jetbrains.annotations.Contract annotation work? How does IntelliJ IDEA support it?
spongebob
  • 8,370
  • 15
  • 50
  • 83
67
votes
6 answers

IntelliJ IDEA - Asterisk after author's name in git log

In our git log we sometimes see an asterisk after the user name in the Author column. The same user is listed without the asterisk in other commits. What does the asterisk stand for? I'm using IntelliJ IDEA 15.0.6.
FeinesFabi
  • 1,147
  • 2
  • 12
  • 25
67
votes
3 answers

How do I set up CLion to compile and run?

I just downloaded CLion from https://www.jetbrains.com/ because I just love the rest of their products. However, I'm having problems configuring it. I'm not able to compile and run my application (a simple "hello world"). When I try to run the…
Andurit
  • 5,612
  • 14
  • 69
  • 121
66
votes
6 answers

Code reformatting on save in PhpStorm or other jetbrains ide

How can I set up that the code is reformatted automatically on saving? So I don't always have to press Ctrl + Alt + L.
ndrizza
  • 3,285
  • 6
  • 27
  • 41
56
votes
4 answers

Windows Defender might be impacting your build performance

After I updated my PyCharm IDE to 19.2.0 from the 19.1.2. I am getting the following warning: "Windows Defender might be impacting your build performance. PyCharm checked thefollowing directories: C:\Workspace\Projects\576_UniversityTwitter…
Burak
  • 1,722
  • 2
  • 15
  • 19
56
votes
2 answers

Where does CLion store executable files?

I install the CLion on a Ubuntu 14.04. I build my first project with help CMakeLists.txt: Source file: #include using namespace std; int main() { cout << "Hello, World!" << endl; return…
Denis
  • 3,595
  • 12
  • 52
  • 86