Skip to content
This repository has been archived by the owner on May 10, 2019. It is now read-only.

Commit

Permalink
Add a special exception for common php comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegray committed Feb 27, 2014
1 parent 4a4dee2 commit c13420e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion highlighter.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
DEFAULT_COLOR_SCOPE_NAME = "invalid"
DEFAULT_COLOR_SCOPE_NAME_COOL = "constant.character.entity.html"
DEFAULT_IS_ENABLED = True
DEFAULT_REGEX = '(\t+ +)|( +\t+)|([\t ]+$)'
DEFAULT_REGEX = '(\t+ +(?![*]))|( +\t+)|([\t ]+$)'
DEFAULT_REGEX_COOL = '[\u2026\u2018\u2019\u201c\u201d\u2013\u2014]'
DEFAULT_DELAY = 3000

Expand Down
2 changes: 1 addition & 1 deletion highlighter.sublime-settings
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"highlighter_enabled": true,
"highlighter_regex": "(\t+ +)|( +\t+)|([\t ]+$)",
"highlighter_regex": "(\t+ +(?![*]))|( +\t+)|([\t ]+$)",
"highlighter_regex_cool": "[\u2026\u2018\u2019\u201c\u201d\u2013\u2014]",
"highlighter_scope_name": "invalid",
"highlighter_scope_name_cool": "constant.character.entity.html",
Expand Down

0 comments on commit c13420e

Please sign in to comment.