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
16
votes
2 answers

OutOfMemoryError: insufficient memory in IntelliJ?

When I run my project in IntelliJ in debug mode I get the following error. Does anybody know what is the cause? I already increased my heap size in…
itro
  • 7,006
  • 27
  • 78
  • 121
16
votes
1 answer

How can I get IntelliJ debugger to allow my app's shutdown hooks to run?

When debugging in IntelliJ an app that registers shutdown hooks, the shutdown hooks do not get called if I click the green "restart" circular arrow button, nor if I click the red square "stop" button. In both cases it appears the app-under-debug is…
15
votes
1 answer

How to manually install IntelliJ IDEA patch update?

I get the following connection error while updating IntelliJ behind proxy (the proxy ping in IntelliJ is working though): Connection Error: Failed to prepare an update: Cannot download 'http://download.jetbrains.com/idea/IU-xxx-patch-win.jar':…
powder366
  • 4,351
  • 7
  • 47
  • 79
15
votes
3 answers

In Intellij IDEA, is there a way to copy the path of the current editor tab to the clipboard?

I'm doing some writing and would like to copy the path of the current editor tab (as shown in the tooltip here) to the clipboard: Anyone happen to know a shortcut for this?
jordanpg
  • 6,386
  • 4
  • 46
  • 70
14
votes
1 answer

IntelliJ IDEA - detach editor window

I have recently removed tabs from my IntelliJ setup, because with all the features available to navigate between files, who needs them? The issue is, the normal way of detaching an editor window would be to drag the tab onto another screen (or…
Misha Griffiths
  • 228
  • 2
  • 9
14
votes
6 answers

Intellij maven dependency prefer local code

i'm working on a project in which i have an android application project which has pom dependencies on other projects something like this: some.project/groupId> …
talarari
  • 539
  • 3
  • 7
  • 19
13
votes
7 answers

Intellij maven imports have broken classpath

I'm using Intellij 13, I've been using Maven quite happily for awhile now to manage the JAR dependencies. But the last few I've imported are causing a broken classpath issue, and they're not being installed to the repository. I though it might be…
Richard G
  • 5,243
  • 11
  • 53
  • 95
13
votes
2 answers

How To Specify main class when using fatjar plugin in gradle.build

I am interested in building a single jar containing all the module dependencies and external jars in a single executable jar file which I will be able to run with java -jar myApp.jar. I have module A which is dependent on module B. Currently I'm…
Ella Nikolic
  • 301
  • 1
  • 2
  • 9
12
votes
6 answers

Java.lang.ExceptionInInitializerError when running Kotlin REPL in Intellij

I have a brand new install of Intellij 2020.3.3 Community and JDK v16. I booted up Intellij, and made sure to update the Kotlin plugin. I created a new Kotlin project, and have made no changes to it. I attempted to run the Kotlin REPL tool…
kiddagger
  • 331
  • 3
  • 9
11
votes
3 answers

Using Mocha with IntelliJ

I am trying to configure Mocha for IntelliJ, and when Googling, I keep finding posts that say "install the mocha plugin". I don't have a Mocha plugin. I go to Settings → Plugins → (install JetBrains plugin) / (browse repositories) but when I type…
guy mograbi
  • 27,391
  • 16
  • 83
  • 122
11
votes
1 answer

Does IntelliJ IDEA have an "add maven dependency" wizard like Eclipse and NetBeans?

NetBeans and Eclipse have nice little wizards which allow me to search local and remote Maven repositories and add any dependency correctly to my POM. Does IntelliJ (community edition) support anything of this sort?
Zoltán
  • 21,321
  • 14
  • 93
  • 134
11
votes
1 answer

How to disable folding of `: Unit =` in scala procedures in Intellij IDEA?

In recent versions of Intellij IDEA, when writing a scala method which returns Unit(a.k.a. a procedure), IDEA will fold the : Unit = part, so that it displays like the so-called "procedure syntax". Here's what it looks like : def myMethod(): Unit =…
Cyäegha
  • 4,191
  • 2
  • 20
  • 36
11
votes
4 answers

Multi-line block select using the keyboard in IntelliJ IDEA on a Mac OS X

I've recently switched from Eclipse to IntelliJ IDEA 13. I use the VI keybindings. One non-vi thing I am used to doing in Eclipse is using Shift + ↑ / Shift + ↓ to block a few lines of text. The behaviour of this text selection in Eclipse is the…
Greg Kopff
  • 15,945
  • 12
  • 55
  • 78
11
votes
1 answer

How to customize IntelliJ's inline documentation pane colors and fonts?

Is there a way to customize IntelliJ's inline documentation pane colors and fonts? The way it is in the picture bellow, makes it hard to read the javadoc text.
ktulinho
  • 3,870
  • 9
  • 28
  • 35
9
votes
3 answers

Permanently exclude directory in IntelliJ

I have an IntelliJ project that includes a directory of some huge files. Since those files were added to the project, we've noticed a degradation in performance such as momentary freezes and general sluggishness. Marking the directory as excluded…
Ben Reich
  • 16,222
  • 2
  • 38
  • 59
1 2
3
20 21