Highlight whitespaces in code. Separate colors for tabs and spaces.
Go to file
2012-04-30 21:38:29 -05:00
Default.sublime-commands -Add settings file and load it from main script 2011-10-19 19:30:30 -06:00
MIT-LICENSE First commit. 2011-10-17 23:15:03 +02:00
README.md Update README.md 2011-10-18 00:35:28 +03:00
trailing_spaces.py Added support for in/excluding empty lines from being matched as trailing whitespace 2012-04-30 21:38:29 -05:00
trailing_spaces.sublime-settings Added support for in/excluding empty lines from being matched as trailing whitespace 2012-04-30 21:38:29 -05:00

Synopsis

This is a Sublime Text 2 plugin.

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!

Installation

Go to your Packages subdirectory under ST2's data directory:

  • Windows: %APPDATA%\Sublime Text 2
  • OS X: ~/Library/Application Support/Sublime Text 2
  • Linux: ~/.config/sublime-text-2
  • Portable Installation: Sublime Text 2/Data

Then clone this repository:

git clone git://github.com/SublimeText/TrailingSpaces.git

That's it!

Options

Several options are available to customize the plugin look 'n feel. The config keys goes into config files accessible throught the "Preferences" menu.

Bind the deletion command to a shortcut

In order to use the deletion feature, one must add the mapping by hand (this should probably go into "Key Bindings - User"):

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

Here, pressing Ctrl + Shift + t will delete all trailing spaces.

Change the highlighting color

One may also change the highlighting color, providing a scope name such as "invalid", "comment"... in "File Settings - User":

{ "trailing_spaces_highlight_color": "invalid" }

Actually, "invalid" is the default value. If you'd like to use a custom color, it should be defined as a color scope in your theme file. Feel free to ask me how to do it.

Disabling highlighting for large files

Highlighting may be disabled for large files. The default threshold is around 1M chars. This is configurable (in "File Settings - User"); unit is number of chars:

{ "trailing_spaces_file_max_size": 1000}

Even though the trailing spaces are not highlighted, one can still delete them using the deletion command.