Last active
          February 5, 2024 17:49 
        
      - 
      
 - 
        
Save renatoargh/8f403726b2323fb8c9a3e6d2c01892db to your computer and use it in GitHub Desktop.  
Revisions
- 
        
renatoargh revised this gist
Feb 5, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Fazer o auto complete do Java funcionar no VSCode: ``` "java.configuration.runtimes": [ { "name": "JavaSE-11", // De acordo com a versão instalada "path": ":javaPath", "default": true },  - 
        
renatoargh revised this gist
Feb 5, 2024 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,13 +3,13 @@ Fazer o auto complete do Java funcionar no VSCode: 1. Instalar SDKMAN (https://sdkman.io/) 2. Rodar `sdk ls java` e copiar o `identifier`` desejado (ultima coluna a esquerda) 3. Rodar `sdk install java :identifier` 4. Rodar `sdk home java :identifier | pbcopy` para copiar o local da instalação da versão especifica do Java (`:javaPath`) que vc instalou pelo sdkman 5. No VSCode clicar em "Preferencer -> Settings", filtrar por "java.configuration.runtimes" então clicar em "Edit in settings.json" e colar o seguinte (substitua as variaveis): ``` "java.configuration.runtimes": [ { "name": "JavaSE-11", # De acordo com a versão instalada "path": ":javaPath", "default": true },  - 
        
renatoargh revised this gist
Feb 5, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ Fazer o auto complete do Java funcionar no VSCode: 1. Instalar SDKMAN (https://sdkman.io/) 2. Rodar `sdk ls java` e copiar o `identifier`` desejado (ultima coluna a esquerda) 3. Rodar `sdk install java :identifier` 4. Rodar `sdk home java 11.0.22-amzn | pbcopy` para copiar o local da instalação da versão especifica do Java (`:javaPath`) que vc instalou pelo sdkman  - 
        
renatoargh created this gist
Feb 5, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ Fazer o auto complete do Java funcionar no VSCode: 1. Instalar SDKMAN 2. Rodar `sdk ls java` e copiar o `identifier`` desejado (ultima coluna a esquerda) 3. Rodar `sdk install java :identifier` 4. Rodar `sdk home java 11.0.22-amzn | pbcopy` para copiar o local da instalação da versão especifica do Java (`:javaPath`) que vc instalou pelo sdkman 5. No VSCode clicar em "Preferencer -> Settings", filtrar por "java.configuration.runtimes" então clicar em "Edit in settings.json" e colar o seguinte (substitua as variaveis): ``` "java.configuration.runtimes": [ { "name": "Java-:identifier", "path": ":javaPath", "default": true }, ] ``` 6. Pressione "CMD+SHIFT+P" depois "Developer: Reload Window" para reiniciar o VSCode