Questions tagged [intellij-13]

IntelliJ IDEA is a popular IDE by JetBrains. Originally created for Java, it currently supports a lot more languages, including: JavaScript, Groovy, HTML, CSS, RSS, R, Haskell, PHP, Ruby, Python, Scala, Clojure, Kotlin.

IntelliJ IDEA is a popular IDE by JetBrains. It is often simply referred to as 'IDEA' or 'IntelliJ'. First released in 2001, it is mostly focused on boosting developer's productivity, providing a wide set of automated refactorings to ease codebase evolutions. Rich plugin development API can be used to add almost any type of functionality, including new languages/frameworks support, VCS integation or build management with custom tools involved. Intellij Idea also serves as a base platform for other IDE software: PhpStorm, PyCharm, RubyMine.

The Ultimate (commercial) version of the tool offers support for enterprise class development, while the open-source (free) version is often used for android, groovy, scala and web development. A 30-day fully functional trial of the Ultimate edition for various platforms can be freely downloaded.

Useful links

Intellij Idea documentation

Developer community

Plugin development guide

303 questions
29
votes
1 answer

IntelliJ IDEA 13.1 - Updating maven repository index authentication failure

When I want to update indices from the central Maven repository, I always get an error: java.lang.RuntimeException: java.io.IOException: Authorization exception retrieving nexes-maven-repository-index.properties. What I am missing here?
user3428555
  • 375
  • 1
  • 4
  • 8
27
votes
4 answers

IntelliJ IDEA 13: new Scala SBT project hasn't src directory structure generated

I followed the getting start video on Jetbrains website to setup IntelliJ IDEA 13.1 Community Edition to work with Scala. Scala plugin v0.36.431 had been installed. While I created a new Scala SBT project with wizard, there was no src/ directory…
aleung
  • 9,848
  • 3
  • 55
  • 69
25
votes
3 answers

`-Dmaven.multiModuleProjectDirectory not set` issue with Maven and IntelliJ

I've spent quite some time trying to figure out what I'm doing wrong and hoping someone may be able to help. My current setup is running Maven 3.3.3 (via homebrew) and Java 1.8. IntelliJ 13 is the IDE of choice. Running mvn -version results in the…
null
  • 3,469
  • 7
  • 41
  • 90
24
votes
2 answers

How does IntelliJ's "Reimport All Maven Projects" button work?

How does IntelliJ's "Reimport All Maven Projects" button actually work? I'm asking this because I see that IntelliJ's reimport button's behavior is different than that of running the mvn command with the -U argument, and it's not clear to me why.
Johnny
  • 14,397
  • 15
  • 77
  • 118
24
votes
8 answers

Intellij: Move tab left and right

Is there a way to move/reposition a tab using the keyboard? I know I can switch tab using ALT + LEFT/RIGHT, and I would like to be able to move them maybe using ALT + SHIFT + LEFT/RIGHT. Is this possible?
mjs
  • 21,431
  • 31
  • 118
  • 200
23
votes
4 answers

How to stop or limit indexing in IntelliJ 13?

My IntelliJ 13.1.5 constantly indexes my project which really slows my machine down. It does it when I rebuild my project as well as when I start my jetty server. Does anybody know how to disable or at least limit that behavior? The previous version…
goe
  • 1,153
  • 2
  • 12
  • 24
23
votes
4 answers

Intellij IDEA artifact 'XXXX:war exploded' has invalid extension

Every time I make even the tiniest change to my POM Intellij removes the .war extension for my exploded artifact in the Project Structure output directory setting. This causes an error in Intellij's Run/Debug configuration: Artifact 'XXXX:war…
Patrick Garner
  • 3,201
  • 6
  • 39
  • 58
21
votes
4 answers

How can I always show Android Studios Preview?

I have probably hit some setting in Android Studio. So my problem is, my Preview window hides every time I click somewhere in the xml code. Obviously I want the preview available the entire time I'm in the xml editor so that I can view my changes,…
Yokich
  • 1,247
  • 1
  • 17
  • 31
21
votes
1 answer

IntelliJ idea support for React.js

I am currently using a licensed copy of IntelliJ idea 13.1. It doesn't seem to support React.js files. I tried downloading intellij Idea 14.1, even this is not supporting React.js. Is webstorm the only Idea IDE which supports React.js? I am using…
budhavarapu ranga
  • 483
  • 2
  • 7
  • 15
21
votes
2 answers

Intellij Navigate to letter-Mnemonic Bookmark shortcut

What is the shortcut to navigate to a letter-Mnemonic Bookmark ? Looking the Official Intellij Documentation , they just explains the shortcuts for the number-Mnemonic bookmarks. PD: I would be nice to add Windows and Mac shortcuts.
JoseF
  • 1,261
  • 13
  • 30
19
votes
1 answer

Intellij, how to disable the incredibly slow animation of tool windows

Is there a way to make intellij a bit snappier and not animate the tool windows? It's incredibly slow as it is, and not very useful.
mjs
  • 21,431
  • 31
  • 118
  • 200
18
votes
8 answers

Lombok with IDEA 13: Cannot find symbol

I have tried using Lombok on Intellij IDEA 13 Ultimate. However. I get the famous error "cannot find symbol" for all the methods that should have been available when I am using specific annotations for example the once I use as annotations are…
Khiem-Kim Ho Xuan
  • 1,301
  • 1
  • 22
  • 45
18
votes
1 answer

Intellij IDEA freezes up, even when editing a .txt file

When I return to intellij, sometimes just to edit an already open .txt file, Intellij would freeze and I get pissed at waiting for 3-4 seconds. Sometimes, in Java files this happens all the time. And I would have to restart Intellij. Autocompletion…
mjs
  • 21,431
  • 31
  • 118
  • 200
17
votes
3 answers

VSCode copy and paste 1 line without newline character being prepended

In VScode when you copy a line of text and then put your cursor in the middle of quotes and hit Ctrl+V it pastes the new line above where you intended it to go. In IntelliJ and PyCharm when you copy a line of code with Ctrl+C without selecting any…
David Dehghan
  • 22,159
  • 10
  • 107
  • 95
17
votes
11 answers

Intellij IDEA java.lang.NoSuchMethodError: scala.collection.immutable.$colon$colon.hd$1()Ljava/lang/Object

I have a following function: def removeLast(list: List[Int]): List[Int] = list match { case List() => List() case List(x) => List() case x :: xs => x :: removeLast(xs) } When I define it and use it from the sbt console everything works just…
Dawid Mazuruk
  • 233
  • 1
  • 3
  • 9
1
2
3
20 21