Reputation: 65
I'm starting a new maven spring boot project on VSCode (via spring initializr). When I try to edit any java file I don't have any autocompletion or code verifications (I mean the errors showing when you're typing something wrong).
I installed the spring boot and the java extension packs as well as intellicode but it does not work.
I'm working behind a proxy but the http-proxy environment variables are correctly set (since the autocompletion works on other projects that are not spring-boot projects).
I've been stuck on this issue for some days now but it didn't find any solutions on the web.
Upvotes: 5
Views: 6862
Reputation: 1964
Try closing vscode and cleaning your workspace storage:
$HOME/.config/Code/User/workspaceStorage
$HOME/Library/Application Support/Code/User/workspaceStorage
%APPDATA%\Code\User\workspaceStorage
In case it did't help, if you have the VScodeVim extension, try disabling it and restarting vscode. This might be helpful.
Upvotes: 7