Skip to content

Instantly share code, notes, and snippets.

@otera
Last active September 18, 2017 06:30
Show Gist options
  • Save otera/55216ca1ffdd86778747f0690bec966d to your computer and use it in GitHub Desktop.
Save otera/55216ca1ffdd86778747f0690bec966d to your computer and use it in GitHub Desktop.
VisualStudioCodeでMarkdownの時だけ末尾の空白をトリミングしない方法 ref: http://qiita.com/otera@github/items/d715f760aab2f6e88e67
// 有効にすると、ファイルの保存時に末尾の空白をトリミングします。
"files.trimTrailingWhitespace": true,
// Markdownの場合は空白トリミングは実施しない
"[markdown]": {
"files.trimTrailingWhitespace": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment