vscode 후행 공백 제거
	
Tools/vs code2023. 1. 18. 13:31
		
  
반응형
    
    
    
  
Trim Trailing Whitespace
파일 저장 시 뒤 공백 제거
댓글()
								
터미널 설정 구성

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",