You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to import org.springframework.boot.SpringApplication;. When I type import org.spring and then press tab key, the autocompleted code is import org.springframework.*;. I want to have the autocompleted code as import org.springframework so that I can type .bo for further completion. Or is there another way to autocomplete this import statement?
Environment
Operating System: macOS 10.15.5
JDK version: openjdk 14.0.2
Visual Studio Code version: 1.47.2
Java extension version: v0.64.1
Steps To Reproduce
type import org.spring
press tab key
Current Result
import org.springframework.*;
Expected Result
import org.springframework
Additional Informations
The text was updated successfully, but these errors were encountered:
That's the default behavior of Eclipse JDT. I think our best option, if it's possible to override that behavior, is to return org.springframework.${0:*;} so that you could keep typing, after the 1st tab, to get type imports. @snjeza WDYT? is this easy to do?
I want to
import org.springframework.boot.SpringApplication;
. When I typeimport org.spring
and then press tab key, the autocompleted code isimport org.springframework.*;
. I want to have the autocompleted code asimport org.springframework
so that I can type.bo
for further completion. Or is there another way to autocomplete this import statement?Environment
Steps To Reproduce
import org.spring
Current Result
import org.springframework.*;
Expected Result
import org.springframework
Additional Informations
The text was updated successfully, but these errors were encountered: