Skip to content

Commit

Permalink
Add Disable trim trailing whitespace for markdown as a VisualStudioCo…
Browse files Browse the repository at this point in the history
…de TIL
  • Loading branch information
rkJun committed Jul 18, 2022
1 parent b11a5b4 commit 88e6a6a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@

### MacOS

- [터미널에서 맥이 잠들지 않게 하기](macOS/prevent-mac-from-sleeping-with-terminal.md)
- [터미널에서 맥이 잠들지 않게 하기](macOS/prevent-mac-from-sleeping-with-terminal.md)

### Visual Studio Code

- [Visual Studio Code 에서 markdown 파일만 trimTrailingWhitespace 옵션 끄기](VisualStudioCode/disable-trim-trailing-whitespace-for-markdown.md)
18 changes: 18 additions & 0 deletions VisualStudioCode/disable-trim-trailing-whitespace-for-markdown.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Visual Studio Code 에서 markdown 파일만 trimTrailingWhitespace 옵션 끄기

소스 코드의 불필요한 후행 공백 제거를 위해
`"files.trimTrailingWhitespace": true` 옵션을 사용하고 있다.
하지만 markdown 파일의 경우에는 후행 공백 2칸으로 개행 처리를 한다.
그러므로, markdown 만 해당 옵션을 `false` 로 설정한다.

settings.json 파일에서
```
"files.trimTrailingWhitespace": true,
"[markdown]": {
"files.trimTrailingWhitespace": false
},
```

# References
- https://github.com/microsoft/vscode/issues/1679
- https://velog.io/@gidskql6671/Vscode-Markdown%EC%97%90%EC%84%9C%EB%A7%8C-Trim-Trailing-Whitespace%EC%98%B5%EC%85%98%EC%9D%84-%EB%81%84%EA%B8%B0

0 comments on commit 88e6a6a

Please sign in to comment.