Is there a way to show the derived type of something in Intellij's Scala support?
For example if I am fumbling my way through some slick code and want to know what type the "user" val is perhaps by olding down a key and hovering my mouse that would be incredibly usefull.
DB.withSession {
implicit session =>
val user = users.filter(user => user.email === email && user.password === password).first
}
Any idea how to find out the type of "user" in my IDE as easily as possible?