vscode3 [VSCODE] 자바(JAVA) 설정에 대하여... 간만에 내 홈페이지를 실행하려고 하니 프로젝트가 build fail이 뜨는 것이다. > Build starts at 2024-02-06 17:15:39 Start to build: testClasses classes Task :compileJava started Task :compileJava failed FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileJava'. > error: invalid source release: 17 * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --deb.. 2024. 2. 6. [VSCODE] f12 정의로 이동(go to definition) 안 될때 vscode로 개발중에 보니까 정의로 이동이 안 되서 불편해진 적이 있다. 그래서 찾아보니, 확장프로그램 탭으로 가서 탭의 오른쪽위에 점점점을 누르면 설치된 모든 확장 사용 안함이 있는데, 그걸 누르고, vscode를 다시 재시작후에 모든확장 사용함을 누르니 잘 되었다. 2022. 10. 5. [VSCODE] 폴더/파일 만들기 short cut 설정 at 탐색기(explorer) vscode는 탐색기에 포커싱이 갔을때도 ctrl + n 이나 ctrl + shift + n을 누르면 새로운 파일이 생성되거나 새로운 워크스페이스를 불러내고 있다. 나는 폴더 혹은 파일을 만들고 싶은데 말이다. 이럴때는 VSCODE의 설정으로 들어가서 ctrl + shift + p를 눌러서 Preferences: Open Keyboard Shortcuts를 들어가면(json)으로 들어가야 한다. [ { "key": "ctrl+n", "command": "explorer.newFile", "when": "!editorFocus" }, { "key": "ctrl+shift+n", "command": "explorer.newFolder", "when": "!editorFocus" } ] 위와 같은 내용을 입력.. 2022. 10. 5. 이전 1 다음