Sublime Text 2: Trim trailing white space on demand

前端 未结 5 639
时光取名叫无心
时光取名叫无心 2020-12-22 18:45

I know that Sublime Text 2 can delete the trailing white space on files upon saving.

When working in a team and commiting a change to a file this tends to produce hu

5条回答
  •  -上瘾入骨i
    2020-12-22 18:56

    Beware: using this plugin makes Sublime Text significantly slower

    I use TrailingSpaces plugin for this.

    Highlight trailing spaces and delete them in a flash.

    ST2 provides a way to automatically delete trailing spaces upon file save. Depending on your settings, it may be more handy to just highlight them and/or delete them by hand. This plugin provides just that!

    Usage: click "Edit / Trailing Spaces / Delete".

    To add a key binding, open "Preferences / Key Bindings - User" and add:

    { "keys": ["ctrl+alt+t"], "command": "delete_trailing_spaces" }
    

提交回复
热议问题