LoginSignup
2
2

More than 5 years have passed since last update.

Sublime text で markdown だけ trim_trailing_white_space_on_save で効かないように。

Posted at

trim_trailing_white_space_on_savetrue にしていると、.md ファイルでも最後のスペースが削除されてしまうので、それの回避。


Mac OS X:  Sublime Text 2 > Preferences > Settings - More > Syntax Specific - User を開く

作成された Markdown.sublime-settingsにリネーム

{
    // Which file extensions go with this file type?
    "extensions":
    [
        "md",
        "mdown",
        "mdwn",
        "mmd",
        "txt"
    ], 

    // Sets the colors used within the text area
    // "color_scheme": "Packages/Color Scheme - Default/Dawn.tmTheme",

    // Set to true to removing trailing white space on save
    "trim_trailing_white_space_on_save": false
}

参考
http://www.granneman.com/webdev/editors/sublime-text/configuring-sublime-text/#markdown

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2