본문 바로가기

Editor/VSC

(11)
VS code에서 terminal을 Powershell에서 Command Prompt로 바꾸기 https://talkingaboutme.tistory.com/entry/ETC-VS-code%EC%97%90%EC%84%9C-terminal%EC%9D%84-Powershell%EC%97%90%EC%84%9C-Command-Prompt%EB%A1%9C-%EB%B0%94%EA%BE%B8%EA%B8%B0
VSCODE 단축키 변경 http://blog.naver.com/PostView.nhn?blogId=rorean&logNo=221346968488&parentCategoryNo=&categoryNo=11&viewDate=&isShowPopularPosts=true&from=search visual studio code 단축키 변경 ​비주얼 스튜디오 코드 단축키 변경 방법​왼쪽 하단 설정 -> 바로 가기 키 클릭다음과 같은 화면이 나... blog.naver.com http://blog.naver.com/PostView.nhn?blogId=rorean&logNo=221346968488&parentCategoryNo=&categoryNo=11&viewDate=&isShowPopularPosts=true&from=search
snippet in vscode 이 글은 vscode 에서 스니펫(snippet) 기능을 다룬다. 스니펫이란 재사용 가능한 소스 코드를 의미한다. 즉, 자주 쓰는 코드를 저장해두고, 필요할 때마다 별칭을 통해 불러올 수 있다. 공식 문서 - https://code.visualstudio.com/docs/editor/userdefinedsnippets 예를 들어 상당히 자주 쓰지만, 매번 타이핑 하기가 귀찮다. 그래서 코드 패턴을 저장해놨다가, 매번 단어를 통해 불러오면 개발 환경에 있어, 많은 도움을 준다. 크게 직접 스니펫 코드를 만들 수도 있고, 플러그인을 통해 만들 수도 있다. 플러그인을 통해 쉽게 만들고, 그것을 쉽게 커스텀하는 것이 효율적이다. 본인은 띄어쓰기 등 조금 번거로울 수 있기 때문에 위와 같은 코드를 만들어주는 플러..
VSCODE 아이콘 Visual Studio Code 의 Material 디자인 아이콘 링크 : https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme 출처: https://vscode.tistory.com/entry/Material-Icon-Theme?category=831270 [VSCode 로 개발하기]
VSCODE 확장자 추가하기 1.preference : ctrl + , 2.file association 검색 3. User settings -> file association -> "Edit in settings.json"을 클릭 4.내가 넣고 싶은 형식 삽입 - ex) "files.associations": {"*.tlf":"html"} https://bassyun.tistory.com/7
VisualStudioCode에서 SFTP, SSH 사용하기 http://blog.naver.com/mincoding/221742731217
VSCODE 파일 비교 https://tttsss77.tistory.com/79
유용한 단축키 에디터 단축키 1. Ctrl+ F2 (select All) | Ctrl + d (select next) | Ctrl + k (select skip) | Ctrl + u (select undo) - 반복되는 단어 한방에 수정 2. Ctrl + Shift + f (select All Files) | Ctrl + ← (collapsed all) | Alt + click (expand or collapse recursive) - 폴더 내 모든 파일 검색 3. Ctrl + f (selected File) | F3 (next) | Shift + F3 (prev) - 파일 내 검색 4. Ctrl + p (open File) | Ctrl + e (new Window) | Ctrl + Shift + t (open clo..