Created
July 16, 2015 22:51
-
-
Save afenix/d1deeba4e53810314833 to your computer and use it in GitHub Desktop.
Highlight non-ascii characters by extending Sublime Highlighter Package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// First install the Sublime Text 2/3 package named Highlighter | |
// then update the user settings here: highlighter.sublime-settings -User | |
{ | |
"highlighter_enabled": true, | |
"highlighter_regex": "(\t+ +(?![*]))|( +\t+)|[^\\x00-\\x7F]|[\u2026\u2018\u2019\u201c\u201d\u2013\u2014]|[\t ]+$", | |
"highlighter_scope_name": "invalid", | |
"highlighter_scope_name_cool": "constant.character.entity.html", | |
"highlighter_max_file_size": 1048576, | |
"highlighter_delay": 3000 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment