I'm using IntelliJ IDE to set up a Play project and do my development. I cannot create a new project nor can I get an existing project (e.g.: websocket-chat) compile in IntelliJ.
I posted this on IntelliJ forums http://devnet.jetbrains.com/thread/450345?tstart=0 but no response yet.
Has anyone been able to get Play project set up in IntelliJ? What IDE do you use? I'm using Play 2.2.
Likely the fix to your issue is to run "play idea" in the console to generate all the files IntelliJ needs to properly index the project.
I use the EAP version of IntelliJ, believe that I run into fewer problems because while it might incur a breaking change they also release fixes quite fast.
IntelliJ has written its own Scala parser for type highlighting, I find that it doesn't always keep up with the latest Scala features and even some that have been around for a while (there were issues with package objects for a bit). Considering that, I usually turn type highlighting off and keep a console window open to do continuous compilations there. Even when compiling works in IntelliJ its always significantly slower than directly using play or sbt from command line.