intellij-idea

What is Eclipse's Ctrl+O shortcut equivalent in IntelliJ IDEA?

I like to use Eclipse's shortcut Ctrl+O which outlines the current source. Is there an equivalent shortcut in IntelliJ IDEA? ...

where to find dictionaries for other languages for intellij ?

Hi all, a quick googling didn't bring anything interesting, intellij spellchecker comes with only english and arabic bundled (strange, I think it made in east Europe, they didn't even bundle their language ?). My customer is german so all my code is mixed english (code)/german (interface) and I can't find a german dictionary for intel...

How do I get the Intellij code autoformatter to keep an annotated field on one line?

Whenever I run the IntelliJ autoformatter - it converts this: @Autowired private CustomerDao customerDao; into this: @Autowired private CustomerDao customerDao; How can I stop it from doing that? ...

Is there any way to hide panels in IntelliJ 9?

In IntelliJ 9.0, is there any way to hide the panels on the sides and bottom? Specifically, I'm trying to hide the Ant Build panel, since I don't use Ant and don't want to have these extra panels taking up space on my side and bottom bars. ...

Questions about IntelliJ to Eclipse transition

I just started using eclipse for some personal projects and am finding the transition from IntelliJ (what I use at work) kind of annoying. I hope it's kosher to ask a few different questions in the same thread. Here goes: 1) How do I get "views" (I'm not sure if this is the term. I mean windows such as Project Explorer, Servers, Console...

How to avoid svn:mergeinfos on sub-folders?

We try to keep the 'svn:mergeinfo' property on the root branch folder only. However, we keep seeing it creep into subfolders. We've been able to identify some possible causes: Moving a folder in the repo-browser Moving and/or renaming packages in IntelliJ Using old svn clients Can anyone provide a list of things we should not do in o...

importing maven dependencies into intellij's classpath

Hi all, I am using Buildr with a java/scala project. Dependencies are descried in the buildfile. An as you may know, Buildr downloads dependencies into ~.m2 folder (as maven2 does). I am wondering how can I import dependencies (from ~.m2 folder or buildfile) into my Intellij project to enjoy the code completion and error detection amo...

Substantial Android development in Scala

Has anyone had success developing a substantial Android app in Scala? Is it a viable option yet? Are there any mature development environments? Given the state of the Scala Eclipse plug-in, it looks as if there is no good IDE support at all other than possibly IntelliJ Ultimate. A few people have posted tutorials describing how to fudge...

IntelliJ 9 and appengine. Library shows in the settings, but, does not get packaged to the exploded war artifact that intelliJ creates

I am building a sample app for google appengine using intelliJ 9 I am trying to add an apache library to my project. In the setting it is added and shows fine. I am able to import the apache classes while coding and there are no errors. However, when I ask intelliJ to run the project (it deploys it in the local appengine after "making"...

How to create a .jar file or export jar on IntelliJ (like eclipse java archive export)

I was using IntelliJ-IDEA IDE , I want to create a jar file from java compiled class files. but I not found command or file, How to create a jar file (like eclipse java archive export) ...

Exclude folder in intellij idea using Maven

Hi. We are using maven to manage our idea projects but I'm having a problem excluding a directory from the idea project. Using idea, I would just go to Project Settings | Modules | Sources and select the folder I wanted to exclude and click on the "Excluded" button. When loading the project from the pom, target is excluded automatically...

How discard local project from repository?

How discard local project from repository in IntelliJ IDEA 9? (like eclipse), help me :) ...

How to create a patch in IntelliJ IDEA?

I've been using IntelliJ IDEA 9.0 Community Edition for some time after years living in Eclipse. One thing seems to be hard to find in it. I'd like to create a patch on some subfolder in my project. In Eclipse it is done using right click, Team, Create Patch. Does anybody know how to do that in IDEA? ...

How to increase the maximum number of opened editors in IntelliJ?

I am building a grails-app with IntelliJ 9.0 and I am a huge fan of the CTR+TAB shortcut that switches between active editors. However, by default, IntelliJ keeps ONLY 10 active editors opened at the same time. It is clearly not enough for me. Do you know, if possible, how I can configure my IDE to have more active editors opened at th...

How do you input commandline argument in IntelliJ IDEA?

When I input commandline arguments, In Eclipse, using with run configuration. But I don't Know How do i input commandline arguments in IntelliJ IDEA. ...

What is the IntelliJ shortcut to create a local variable?

In Eclipse if you have a method: String MyObject.getValue(); When using this you can go: MyObject.getValue(); If you cursor is on the line and you hit CTRL+1 you get a context menu to 'assign a new local varaible', resulting in the following: String value = MyObject.getValue(); Can you do this as easily in IntelliJ, I've searc...

Xquery support in IntelliJ Idea?

Has anyone had any success developing XQuery in IntelliJ? Specifically, does anyone know of any code completion or code syntax highlighting abilities that exist already or that you've built? ...

Skipping GWT compilation in Intellij-Idea 9

It seems to me that since GWT 2.0's development mode runs until your project is complete there is essentially no technical reason to run the actual Java->Javascript portion of the compiler when developing. Unfortunately in Idea 9 before your application server starts up the GWT compiler runs and the output is bundled into your .war. Th...

IntelliJ IDEA: regex for removing Oracle to_timestamp syntax.

I'm trying to come up with a search/replace expression that will convert from Oracle style inserts with timestamp fields to insert statements for another database. Basically, I want to convert strings like: to_timestamp('13-SEP-09 12.00.00.000000000 PM','DD-MON-RR HH.MI.SS.FF AM') to just: '13-SEP-09 12.00.00.000000000 PM' I've tr...

Building a SWC from IntelliJ Idea without resorting to ant?

First, here's what I want to do: * Compile my library code into a SWC * Do not staticly link the Flex framework At first, I tried just setting up a Flex module, clicking the "library" and "use framework as an RSL" buttons. This however doesn't compile any of my code into the SWC, and it basically just compiles a new SWC of the entire ...