Just as further reference (or as complement):
The Sublime Text 2/3 package, named Highlighter
, can (as his name says) highlight some characters with regex...
"You can also add a custom regex for characters to highlight."
So, with this package, plus @Mikko Ohtamaa
answer, we can edit the file...
highlighter.sublime-settings -
User
...and include the proposed regex, (expresed here as [^\\x00-\\x7F]
) to end up with something like this:
{
"highlighter_regex": "(\t+ +)|( +\t+)|[^\\x00-\\x7F]|[\u2026\u2018\u2019\u201c\u201d\u2013\u2014]|[\t ]+$"
}
The result would be an automatic highlight of any "non-ASCII (code point > 128) characters" in our file.
Note, this wil not made a selection of those characters, only will highlight them to easily realize if you have any.