개발 환경 설정

Visual code 개발 환경 설정

realforceman 2021. 8. 8. 01:24
728x90

멀티 윈도우

 윈도우, 리눅스 : Ctrl + K, O (O 누를땐 O만 누른다.)

 맥 :  Command + K, O (O 누를땐 O만 누른다.)

https://stackoverflow.com/questions/43362133/visual-studio-code-open-tab-in-new-window

 

코드 세로선 보이게 하기, Vertical rulers

 

코드 가로 100 라인에 세로로 선 보이게 하기

Preferences -> settings 이동후 vertical 검색 하면

Editor : Rulers 가 검색된다.

 

그 이후 Edit in settings.json 클릭 후 아래와 같이 수정 

"workbench.colorCustomizations": {
"editorRuler.foreground": "#0e550e"
},

"editor.rulers": [100,100],

Vertical line의 색과, 라인 시작 끝을 정해주는 설정이다.

 

https://stackoverflow.com/questions/29968499/vertical-rulers-in-visual-studio-code

728x90