When I use Java with Eclipse and write a class, sometimes I have to import classes. The fastest way to do that is with a keyboard shortcut: CtrlShiftO. But this keyboard shortcut seem to be broken in Scala IDE. It opens an empty "Refactoring" popup instead.

Is there a keyboard shortcut for importing all unimported classes in Scala IDE?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Our current implementation of Organize Imports doesn't add missing imports, it only reorganizes the existing ones and removes unneeded ones. I'm currently working on an improved version, and adding missing imports is also on my agenda.

In the meantime, we already have a quickfix that you can use to import a single missing import.

link|improve this answer
Sounds good. Is there a keyboard shortcut for the single missing import? – Jonas Jun 10 '11 at 12:46
2  
Ctrl+1, but the caret needs to be on the same line as the missing import, otherwise it won't work. – Mirko Stocker Jun 10 '11 at 13:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.