vscode-java
vscode-java copied to clipboard
offer to import explicit class reference when anywhere on the class name
lets say you have java.util.stream.Stream.concat(...) then please provide quick fix on "Stream" or even anywhere on the class name to turn it into:
import java.util.stream.Stream;
...
Stream.concat(...);
today you can only get quick fix offered if you are on the "concat" method name.