SublimeText / TrailingSpaces

Highlight trailing spaces and delete them in a flash.
MIT License
897 stars 94 forks source link

Stopped working after update to ST3 build 3065 #81

Closed kitsguru closed 9 years ago

kitsguru commented 9 years ago

Windows 7 64 bit ST3 build 3065

Deleted package, restarted ST and re-installed. Still not working and empty line under edit menu where TS normally exists.

jamyouss commented 9 years ago

I have the same issu on linux mint !

jamyouss commented 9 years ago

This one do the same think and work fine : https://packagecontrol.io/packages/Trimmer

zyphlar commented 9 years ago

Build 3065 on Linux (Ubuntu 64-bit) not working for me either. The menu items seem to show up but no highlighting. The HighlightWhitespaces plugin works for me however.

jbrooksuk commented 9 years ago

I'm on build 3070 (OSX 10.10) and it's working fine.

Sinetheta commented 9 years ago

Unfortunately @zyphlar that plugin highlight all whitespace, which is pretty terrible.

kitsguru commented 9 years ago

It is now working fine for me, only highlighting trailing spaces.

zyphlar commented 9 years ago

@Sinetheta I have open pull requests for HighlightWhitespaces to add end-of-line and mixed whitespace as an option: https://github.com/disq/HighlightWhitespaces/pull/14/files

Then you can disable the other whitespace detection with highlight_whitespaces.sublime-settings:

{
  "highlight_whitespaces_check_spaces": false,
  "highlight_whitespaces_check_tabs": false,
  "highlight_whitespaces_check_eol": true,
  "highlight_whitespaces_check_mixed": true,
}