Tools/vs code에 해당하는 글 2

vscode 후행 공백 제거

Tools/vs code|2023. 1. 18. 13:31
반응형

Trim Trailing Whitespace

 

파일 저장 시 뒤 공백 제거 

댓글()

VSCode에서 Git Bash를 통합 터미널로 설정하는 방법

Tools/vs code|2022. 12. 29. 11:27
반응형

터미널 설정 구성

 

terminal.integrated.defaultprofile.windows 에서 Git Bash 선택 

 

만약 해당 옵션이 없다면 settings.json 파일을 열고 terminal.integrated.profiles.windows 항목을 찾고 없다면 추가 .

주의 : defaultProfile.windows 값은 한 단어여야 작동합니다. 붙여쓰세요.

 

  "terminal.integrated.profiles.windows": {
    "GitBash": { 
        "source": "Git Bash",
        "path": ["C:\\Program Files\\Git\\bin\\bash.exe"],
    },
  },  
  "terminal.integrated.defaultProfile.windows": "GitBash",

댓글()