Skip to content

Commit

Permalink
Closes atom#200 Makes escaped hex include lowercase hex chars
Browse files Browse the repository at this point in the history
  • Loading branch information
ValarDragon committed May 19, 2017
1 parent 3c79275 commit 2acf269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grammars/python.cson
Expand Up @@ -800,7 +800,7 @@
'name': 'constant.character.escape.tab.python'
'13':
'name': 'constant.character.escape.vertical-tab.python'
'match': '(\\\\x[0-9A-F]{2})|(\\\\[0-7]{3})|(\\\\\\n)|(\\\\\\\\)|(\\\\\\")|(\\\\\')|(\\\\a)|(\\\\b)|(\\\\f)|(\\\\n)|(\\\\r)|(\\\\t)|(\\\\v)'
'match': '(\\\\x[0-9A-Fa-f]{2})|(\\\\[0-7]{3})|(\\\\\\n)|(\\\\\\\\)|(\\\\\\")|(\\\\\')|(\\\\a)|(\\\\b)|(\\\\f)|(\\\\n)|(\\\\r)|(\\\\t)|(\\\\v)'
'escaped_unicode_char':
'captures':
'1':
Expand Down

0 comments on commit 2acf269

Please sign in to comment.