Questions tagged [intellij-16]

IntelliJ IDEA is an IDE by JetBrains. Originally created for Java, it currently supports a wide variety of languages, including JavaScript, Groovy, HTML, CSS, RSS, R, Haskell, PHP, Ruby, Python, Scala, Swift, Clojure, and Kotlin.

IntelliJ IDEA is an IDE by JetBrains. It is often simply referred to as "IDEA" or "IntelliJ". First released in 2001, it is mostly focused on boosting the developer's productivity, providing a wide set of automated refactorings to ease evolutions of the codebase.

Its rich plugin development API can be used to add almost any type of functionality, including support of new languages and frameworks, VCS integration, or build management with custom tools. Intellij IDEA also serves as a base platform for other IDE software: AppCode, PhpStorm, PyCharm, RubyMine, Android Studio, CLion.

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 downloaded for free.

Useful links

Intellij IDEA documentation

Issue tracker

Developer community

Plugin development guide

10 questions
3
votes
1 answer

Is it possible to make Intellij enter power save mode when my laptop is on battery automatically?

I usually work with the AC plugged in but sometimes I remove the cord and forget to put Intellij into Power Save mode and my battery drains battery very quickly. Is it possible to do what I am asking?
Alexander Suraphel
  • 10,103
  • 10
  • 55
  • 90
3
votes
2 answers

Intellij extend java syntax highlighting

I am working on a project, where I need to highlight a special kind of a syntaxes in a java file and extract those parts. public class Hello{ public static void main(String [] args){ <<< SOMTHING >>> } } I have looked at a tutorial from…
2
votes
1 answer

How to link a Gradle project to the Javadoc of its dependencies?

I have a Gradle project consisting of an Android application module. I cannot figure out how to get the Android application module to link into the Javadoc of its dependencies. I have specified the following in the project's root-level build.gradle…
Adil Hussain
  • 30,049
  • 21
  • 112
  • 147
1
vote
1 answer

How to navigate to the next result in "tiny search" IntelliJ 2016

In IntelliJ I can usually search in any Window (not being an editor) by just start typing. Is there any way to navigate through the results? as an example: searching in database tables
letmejustfixthat
  • 3,379
  • 2
  • 15
  • 30
1
vote
1 answer

Java scratch file unable to execute in intellij 2016

Previously i was using Intellij15 where the scratch file feature introduced and it was successfully execute java code there. But after upgrading to intellij16 i unable to execute scrach file of type java. Can someone tell me a way to work in…
user526206
1
vote
1 answer

Can anyone tell us what the ! means? "java.io.FileNotFoundException: JAR entry WEB-INF/lib/antlr-runtime-3.5.2.jar!/ not found"

I'm trying to run tapestry atmosphere to write a chat application for a school project. During this I came to an error even my professors don't understand. java.io.FileNotFoundException: JAR entry WEB-INF/lib/antlr-runtime-3.5.2.jar!/ not…
1
vote
0 answers

How to add resource files in intellij from src/main/java directory(intellij 2016)

I am trying to get this very small project working in intellij(it already works in eclipse). https://github.com/deanhiller/webpiecesExample which is generated from the webpieces webserver project. When booting the server, it can't find the html…
Dean Hiller
  • 19,235
  • 25
  • 129
  • 212
0
votes
1 answer

Configuring IntelliJ IDEA 2016 so that the braces of object literals in Typescript are on a new line but not indented

Right now, when I format the following code, let a = { x: true, y: false, z: true }; let b = { x: true, y: false, z: true }; I get this result: let a = { x: true, y: false, z: true }; let b = { x:…
Pimgd
  • 5,983
  • 1
  • 30
  • 45
0
votes
0 answers

File changes are not reflecting to hard disk and old file is being read every time. How can I get through this?

I am using IntelliJ IDEA version 2016.1.2. I have a project which contains couple of properties files using which I am handling things such as test run environment, file paths etc. Now even if I change the particular property such as…
SelThroughJava
  • 321
  • 3
  • 14
0
votes
1 answer

IntelliJ Community Edition 2016 Scala Worksheet shows strange output instead of literal value

I've used the scala worksheet in InteliJ and have run across a problem where the right-hand side (REPL-like output) shows what appears to be a namespace or memory address instead of the useful-to-a-human literal value. In the scala REPL (not…