How to import all unimported classes into the Scala IDE?

When I use Java with Eclipse and write a class, sometimes I have to import classes. The quickest way to do this is by using keyboard shortcuts: Ctrl Shift O. But this keyboard shortcut seems to be broken into a Scala IDE . Instead, an empty Refactoring popup window opens.

Is there a keyboard shortcut to import all unimported classes into the Scala IDE?

+3
source share
1 answer

In our current implementation of Organize Imports, missing import is not added, it only reorganizes existing ones and removes unnecessary ones. I am currently working on an improved version, and adding missing imports is also on my agenda.

In the meantime, we already have quickfix, which you can use to import one missing import.

+9
source

All Articles