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? ...
I like to use Eclipse's shortcut Ctrl+O which outlines the current source. Is there an equivalent shortcut in IntelliJ IDEA? ...
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...
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? ...
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. ...
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...
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...
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...
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...
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"...
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) ...
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 in IntelliJ IDEA 9? (like eclipse), help me :) ...
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? ...
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...
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. ...
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...
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? ...
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...
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...
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 ...