Last active
February 17, 2017 20:34
-
-
Save kulp/a6ba63b8f8c45fc5d63d to your computer and use it in GitHub Desktop.
Revisions
-
kulp revised this gist
Feb 17, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -39,7 +39,7 @@ match = '(\[|\])'; }, { name = 'keyword.operator.binop'; match = '/(\^\^|[<>=]=|[|&]~?|<<|>>>?|[-+*<>^@])/'; }, { name = 'keyword.other.directive'; match = '\.(word|ascii|utf32)\b'; -
kulp created this gist
Jun 28, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,48 @@ { patterns = ( { name = 'variable'; match = '\b([A-Pa-p])\b'; }, { name = 'string.quoted.double'; begin = '"'; end = '"'; }, { name = 'string.quoted.single'; begin = "'"; end = "'"; }, { name = 'keyword.other.cpp.directive'; begin = '^\s*#\s*(endif|if|define|include)'; end = '$'; }, { name = 'comment.line.block'; begin = '/\*'; end = '\*/'; }, { name = 'comment.line.double-slash'; begin = '//'; end = '$'; }, { name = 'comment.line.number-sign'; begin = '#'; end = '$'; }, { name = 'constant.numeric'; match = '-?\b(0x[0-9a-f]+|0[0-7]+|[0-9]+)\b'; }, { name = 'keyword.control'; match = '\billegal\b'; }, { name = 'keyword.operator.arrow'; match = '(<-|->)'; }, { name = 'keyword.operator.bracket'; match = '(\[|\])'; }, { name = 'keyword.operator.binop'; match = '(<<<|>>>|<<|>>|<|>|<>|==|\^|\^~|&~|&|\||\+|-|\*)'; }, { name = 'keyword.other.directive'; match = '\.(word|ascii|utf32)\b'; }, ); }