Sublime text - 줄 끝 공백 제거하기
CODEDRAGON ㆍDevelopment/IDE, Editor
반응형
Sublime text - 줄 끝 공백 제거하기
입력 후 저장되어 질 때 줄 끝 공백이 제거되어집니다.
Sublime 메뉴: [Preferences] >> [Settings]
왼쪽 창의 Default 설정에서
"trim_trailing_white_space_on_save" 을 찾아 설정항목을 복사한 후
"trim_trailing_white_space_on_save": true 로 오른쪽 창의 User settings에 추가해 줍니다.
{ "font_size": 19, "ignored_packages": [ "Vintage" ], "trim_trailing_white_space_on_save": true } |
기본값 줄 끝 공백 제거 안함 |
"trim_trailing_white_space_on_save": false |
줄 끝 공백 제거 |
"trim_trailing_white_space_on_save": true |
'Development > IDE, Editor' 카테고리의 다른 글
PyCharm 디버깅 방법 (0) | 2020.03.14 |
---|---|
VSCode - 파일 오픈 기본 설정 (0) | 2020.01.27 |
VisualStudio Code Shortcuts 20 (0) | 2019.12.22 |
VSCode (VisualStudio Code) - 줄 끝 공백 제거하기 (0) | 2019.12.13 |
eclipse console(콘솔) 한글깨짐(인코딩) 해결방법 (0) | 2019.12.02 |